
Security News
RubyGems Adds Cooldown Feature to Bundler for Newly Published Gems
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.
@felixgeelhaar/glaze-engine
Advanced tools
CSS framework engine for the Glaze Design System - Tailwind CSS and UnoCSS integration
CSS framework engine for the Glaze Design System - Tailwind CSS and UnoCSS integration
npm install @felixgeelhaar/glaze-engine @felixgeelhaar/glaze-tokens
# or
pnpm add @felixgeelhaar/glaze-engine @felixgeelhaar/glaze-tokens
# or
yarn add @felixgeelhaar/glaze-engine @felixgeelhaar/glaze-tokens
// tailwind.config.js
import { glazePlugin } from '@felixgeelhaar/glaze-engine/plugin';
import { glazePreset } from '@felixgeelhaar/glaze-engine/preset';
export default {
presets: [glazePreset],
plugins: [glazePlugin],
content: [
'./src/**/*.{html,js,jsx,ts,tsx,vue}'
]
}
// uno.config.js
import { defineConfig } from 'unocss';
import { glazePreset } from '@felixgeelhaar/glaze-engine/unocss';
export default defineConfig({
presets: [glazePreset()],
// your other configs
})
<!-- Glass backgrounds -->
<div class="glass-bg glass-blur-md glass-opacity-80">
Frosted glass effect
</div>
<!-- Glass cards -->
<div class="glass-card glass-border glass-shadow-lg">
Beautiful glass card
</div>
<!-- Glass buttons -->
<button class="glass-button glass-hover glass-active">
Click me
</button>
The engine provides specialized utilities for glassmorphism:
Backdrop Filters
glass-blur-{sm|md|lg|xl} - Backdrop blur effectsglass-saturate-{50|100|150|200} - Backdrop saturationglass-brightness-{50|75|100|125|150} - Backdrop brightnessGlass Backgrounds
glass-bg - Semi-transparent glass backgroundglass-bg-primary - Tinted glass backgroundsglass-bg-accentglass-bg-neutralGlass Borders
glass-border - Subtle glass borderglass-border-{t|r|b|l} - Directional bordersglass-divide - Glass dividers between childrenGlass Effects
glass-shadow-{sm|md|lg|xl} - Elevated glass shadowsglass-glow - Glowing glass effectglass-shimmer - Animated shimmer effectPre-built component styles:
<!-- Buttons -->
<button class="glz-btn glz-btn-primary glz-btn-lg">
Large Primary Button
</button>
<!-- Cards -->
<div class="glz-card glz-card-glass">
Card content
</div>
<!-- Inputs -->
<input class="glz-input glz-input-glass" placeholder="Enter text">
<!-- Modals -->
<div class="glz-modal glz-modal-glass">
Modal content
</div>
<!-- Automatic theme switching -->
<div class="glass-bg dark:glass-bg-dark">
Adapts to light/dark mode
</div>
<!-- High contrast mode -->
<div class="contrast:glass-border-strong">
Enhanced borders in high contrast
</div>
<!-- Reduced motion -->
<div class="motion-safe:glass-shimmer motion-reduce:glass-static">
Respects motion preferences
</div>
// tailwind.config.js
import { glazePlugin } from '@felixgeelhaar/glaze-engine/plugin';
export default {
plugins: [
glazePlugin({
// Enable/disable features
glass: true,
animations: true,
components: true,
// Customize values
blur: {
xs: '4px',
sm: '8px',
md: '12px',
lg: '24px',
xl: '40px'
},
// Add custom variants
variants: {
'high-contrast': '@media (prefers-contrast: high)'
}
})
]
}
// tailwind.config.js
import { glazePreset } from '@felixgeelhaar/glaze-engine/preset';
const customPreset = {
...glazePreset,
theme: {
...glazePreset.theme,
extend: {
...glazePreset.theme.extend,
// Your custom extensions
colors: {
brand: '#your-color'
}
}
}
}
export default {
presets: [customPreset]
}
The engine is optimized for production:
Note: Backdrop filters require modern browser support. The engine includes fallbacks for older browsers.
MIT
FAQs
CSS framework engine for the Glaze Design System - Tailwind CSS and UnoCSS integration
We found that @felixgeelhaar/glaze-engine 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
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.

Security News
pnpm 11.5 now recognizes npm staged publish approvals in release metadata, preventing those releases from being mistaken for lower-trust package publishes.

Security News
Federal audit finds NIST lacked a plan to clear the NVD backlog, wasted funds on duplicate work, and delayed use of CISA data.