Files
etcprs/tailwind.config.cjs
2026-03-18 03:06:27 -06:00

41 lines
1.1 KiB
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
fontFamily: {
mono: ['"DM Mono"', '"Fira Mono"', 'monospace'],
sans: ['"Barlow"', 'sans-serif'],
cond: ['"Barlow Condensed"', 'sans-serif'],
},
colors: {
console: {
bg: '#0d0f0e',
surface: '#131713',
raised: '#191e19',
border: '#263026',
border2: '#2f3b2f',
amber: '#e8930a',
amber2: '#f5b730',
amberglow:'rgba(232,147,10,0.15)',
cyan: '#2dd4c8',
cyandim: 'rgba(45,212,200,0.12)',
magenta: '#d946a8',
magentadim:'rgba(217,70,168,0.12)',
green: '#4ade80',
red: '#f87171',
text: '#d4dbd4',
text2: '#7a9478',
text3: '#3d5c3d',
}
},
boxShadow: {
soft: '0 4px 16px rgba(0,0,0,0.5)',
amber: '0 0 12px rgba(232,147,10,0.3)',
console: 'inset 0 1px 0 rgba(255,255,255,0.04)',
}
}
},
plugins: []
};