initial commit
This commit is contained in:
41
tailwind.config.js
Normal file
41
tailwind.config.js
Normal file
@@ -0,0 +1,41 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
export default {
|
||||
content: [
|
||||
'./app/components/**/*.{js,vue,ts}',
|
||||
'./app/layouts/**/*.vue',
|
||||
'./app/pages/**/*.vue',
|
||||
'./app/plugins/**/*.{js,ts}',
|
||||
'./app/app.vue',
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
fontFamily: {
|
||||
mono: ['"JetBrains Mono"', '"Fira Code"', 'ui-monospace', 'monospace'],
|
||||
},
|
||||
colors: {
|
||||
kestrel: {
|
||||
'bg': '#060b14',
|
||||
'surface': '#0d1424',
|
||||
'surface-hover': '#111a2e',
|
||||
'border': '#1a2744',
|
||||
'text': '#b8c9e0',
|
||||
'muted': '#5c6f8a',
|
||||
'accent': '#22c9c9',
|
||||
'accent-dim': '#0f3d3d',
|
||||
'glow': 'rgba(34, 201, 201, 0.35)',
|
||||
},
|
||||
},
|
||||
boxShadow: {
|
||||
'glow-sm': '0 0 12px -2px rgba(34, 201, 201, 0.2)',
|
||||
'glow': '0 0 20px -4px rgba(34, 201, 201, 0.3)',
|
||||
'glow-md': '0 0 24px -2px rgba(34, 201, 201, 0.25)',
|
||||
'glow-border': 'inset 0 0 20px -8px rgba(34, 201, 201, 0.15)',
|
||||
},
|
||||
textShadow: {
|
||||
'glow': '0 0 12px rgba(34, 201, 201, 0.4)',
|
||||
'glow-sm': '0 0 8px rgba(34, 201, 201, 0.3)',
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
}
|
||||
Reference in New Issue
Block a user