
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.
@epilot/core-ui
Advanced tools
Core UI package containing global design tokens and configurations for epilot's design system.
Core UI package containing global design tokens and configurations for epilot's design system.
📖 View Storybook Documentation
npm install @epilot360/core-ui
# or
yarn add @epilot360/core-ui
This package provides a shared Tailwind configuration for consistent styling. To use this in your project, add the following to your tailwind.config.js:
import tailwindConfig from '@epilot360/core-ui';
export default {
presets: [tailwindConfig],
//Project specific configurations
}
If you're only using the Tailwind preset without importing any components, you'll need to import the tokens separately to have access to the CSS variables:
import '@epilot360/core-ui/dist/tokens.css';
If you only want the design tokens without importing the entire library, you can import just the tokens.css file:
Import in JavaScript/TypeScript
import '@epilot360/core-ui/dist/tokens.css';
Or in a CSS file:
@import '@epilot360/core-ui/dist/tokens.css';
A theme provider component that supports light and dark themes is available. To use it, wrap your application with the EpilotThemeProvider:
import { EpilotThemeProvider } from '@epilot360/core-ui';
function App() {
return (
<EpilotThemeProvider theme="light">
{/* Other Components */}
</EpilotThemeProvider>
);
}
Note: When using theme switching, Tailwind color utilities (like text-blue-9) will not automatically respond to theme changes. Other utilities (typography, spacing, etc.) work normally regardless of theme.
To use any of the components inside the library:
import { Button } from '@epilot360/core-ui';
function CustomComponent() {
return (
<Button variant="solid" size="2">
Primary Button
</Button>
);
}
FAQs
Core UI package containing global design tokens and configurations for epilot's design system.
We found that @epilot/core-ui demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 43 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.