
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
A beautiful glassmorphism-styled React component library for modern web applications
# With npm
npm install glassykit
# With yarn
yarn add glassykit
# With pnpm
pnpm add glassykit
Wrap your application with ThemeProvider to enable theme switching:
import React from 'react';
import { ThemeProvider, GlassButton } from 'glassykit';
import 'glassykit/styles/glass.css';
import 'glassykit/styles/themes.css';
function App() {
return (
<ThemeProvider>
<div className="bg-gradient-to-br from-indigo-600 to-purple-800 min-h-screen flex items-center justify-center">
<GlassButton>Click Me</GlassButton>
</div>
</ThemeProvider>
);
}
export default App;
GlassButton - Versatile buttons with multiple variantsGlassCard - Container component with glass effectGlassInput - Styled input fieldGlassSelect - Dropdown select componentGlassModal - Modal/dialog componentGlassSwitch - Toggle switch componentGlassTooltip - Tooltip component for displaying informationGlassNavbar - Navigation bar componentGlassAccordion - Collapsible content panelsGlassTabs - Tab navigation componentGlassBadge - Badge/label componentGlassSpinner - Loading spinner with multiple sizesToastProvider/useToast - Toast notification systemimport { GlassButton } from 'glassykit';
function ButtonDemo() {
return (
<div className="space-x-2">
<GlassButton>Default</GlassButton>
<GlassButton variant="outline">Outline</GlassButton>
<GlassButton variant="soft">Soft</GlassButton>
<GlassButton variant="frosted">Frosted</GlassButton>
</div>
);
}
import { GlassCard } from 'glassykit';
function CardDemo() {
return (
<GlassCard className="p-6" hoverEffect shadow>
<h2 className="text-xl font-bold mb-2">Glass Card</h2>
<p>This is a card with a glass effect, hover animation, and shadow.</p>
</GlassCard>
);
}
import { useTheme, GlassSwitch } from 'glassykit';
function ThemeToggle() {
const { theme, setTheme, isDark } = useTheme();
return (
<div className="flex items-center gap-2">
<span>Light</span>
<GlassSwitch
checked={isDark}
onChange={(checked) => setTheme(checked ? 'dark' : 'light')}
/>
<span>Dark</span>
</div>
);
}
import { useToast, GlassButton, ToastProvider } from 'glassykit';
function ToastDemo() {
const { showToast } = useToast();
return (
<GlassButton
onClick={() => showToast('Operation successful!', 'success')}
>
Show Success Toast
</GlassButton>
);
}
// Wrap your app with ToastProvider
function App() {
return (
<ThemeProvider>
<ToastProvider>
<YourApp />
</ToastProvider>
</ThemeProvider>
);
}
GlassyUI uses Tailwind CSS for styling. You can customize the appearance by:
/* Custom theme variation */
.theme-purple {
--glass-bg: rgba(125, 60, 180, 0.2);
--glass-border: rgba(180, 120, 220, 0.3);
--accent-color: rgba(150, 100, 200, 0.6);
}
GlassyUI requires:
GlassyUI uses modern CSS features like backdrop-filter which has the following browser support:
For older browsers, components will still work but without the glass effect.
We welcome contributions to GlassyUI! Please see our Contributing Guide for more details.
GlassyUI is released under the MIT License. See the LICENSE file for more details.
FAQs
<img src="https://img.shields.io/badge/TailwindCSS-4.1.7-b
The npm package glassykit receives a total of 1 weekly downloads. As such, glassykit popularity was classified as not popular.
We found that glassykit demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.