26 lines
663 B
JavaScript
26 lines
663 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./index.html', './src/**/*.{vue,ts}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
bg: '#282828',
|
|
'bg-soft': '#3c3836',
|
|
'bg-hard': '#1d2021',
|
|
text: '#ebdbb2',
|
|
'text-muted': '#a89984',
|
|
green: '#b8bb26',
|
|
yellow: '#fabd2f',
|
|
blue: '#83a598',
|
|
orange: '#fe8019',
|
|
red: '#fb4934',
|
|
purple: '#d3869b',
|
|
aqua: '#8ec07c',
|
|
},
|
|
fontFamily: {
|
|
mono: ['"Fira Code"', '"Courier New"', 'monospace'],
|
|
},
|
|
},
|
|
},
|
|
}
|