
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
A dark-first collection of UI patterns and components.

Most templates are built using light colors and later on adapted to dark colors. Dark themes shouldn't be an afterthought, they should be a top priority.
Our mission is to unleash the creative potential in every developer. We do that by providing modular components that can be used to build modern sites faster.
You can access the documentation at: ui.draculatheme.com
You can install Dracula UI via npm or yarn.
npm install dracula-ui
yarn add dracula-ui
You can use Dracula UI with plain HTML by importing the CSS file.
<link
rel="stylesheet"
href="node_modules/dracula-ui/styles/dracula-ui.css"
/>
Now you can take advantage of all the classes, for example:
<p class="drac-text drac-text-black">Hello Vampire</p>
You can also use Dracula UI with React by importing the JS package.
import 'dracula-ui/styles/dracula-ui.css'
import { Paragraph } from 'dracula-ui'
function App() {
return <Paragraph color="black">Hello Vampire</Paragraph>
}
export default App;
First, you need to import the CSS globally.
Go to pages/_app.js (or create this file if it doesn't exist yet) and add the CSS import:
import 'dracula-ui/styles/dracula-ui.css'
function MyApp({ Component, pageProps }) {
return <Component {...pageProps} />
}
export default MyApp
Then you can import Dracula UI and use all React components.
import { Paragraph } from 'dracula-ui'
export default function Index() {
return <Paragraph color="black">Hello Vampire</Paragraph>
}
Go to _config.yml and include the node_modules folder:
include:
- node_modules
Create a Sass file at assets/css/styles.scss with the following content:
---
---
@import "../../node_modules/dracula-ui/styles/dracula-ui.css"
The empty front matter at the top tells Jekyll it needs to process the Dracula UI file.
Finally, include the compiled CSS file into your _layouts.
<link rel="stylesheet" href="/assets/css/styles.css">
You can suggest new ideas using GitHub Discussions.
If you find a problem, feel free to open new GitHub Issues.
MIT License © Zeno Rocha
FAQs
A dark-first collection of UI patterns and components.
The npm package dracula-ui receives a total of 32 weekly downloads. As such, dracula-ui popularity was classified as not popular.
We found that dracula-ui demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.