29 lines
703 B
JavaScript
29 lines
703 B
JavaScript
module.exports = {
|
|
darkmode: true,
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{svelte,js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: '#232B33',
|
|
secondary: '#25303B',
|
|
tertiary: '#2F3C47',
|
|
priority_primary: '#332328',
|
|
priority_secondary: '#3B252F',
|
|
priority_tertiary: '#472F39',
|
|
priority_quaternary: '#9A003A',
|
|
accent: '#2284d9',
|
|
accent_green: '#00A379',
|
|
accent_dark_green: '#008563',
|
|
accent_cyan: '#0098A3',
|
|
accent_red: '#FF004E',
|
|
accent_dark_red: '#850032',
|
|
border_primary: '#373a40',
|
|
hover_secondary: '#2c2e33',
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|