please let this be the fix brah 😭

This commit is contained in:
Samidy 2025-11-01 13:28:05 +03:00 committed by GitHub
parent 54ee73d9e5
commit 17749c884b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 189 additions and 9 deletions

View file

@ -25,6 +25,27 @@ import {
transformerDirectives
} from 'unocss'
// Add Halloween colors to extend the existing colors
const halloweenColors = {
50: '#fff7ed',
100: '#ffedd5',
200: '#fed7aa',
300: '#fdba74',
400: '#fb923c',
500: '#FF6A00',
600: '#ea580c',
700: '#c2410c',
800: '#9a3412',
900: '#7c2d12',
950: '#431407'
}
// Extend colors with Halloween theme
const extendedColors = {
...colors,
halloween: halloweenColors
}
const colorScales = [
'50',
'100',
@ -137,4 +158,4 @@ export default defineConfig({
})
],
transformers: [transformerDirectives()]
})
})