Scripts/resources/[ps]/ps-adminmenu/ui/tailwind.config.cjs

21 lines
379 B
JavaScript
Raw Normal View History

2024-12-29 20:11:16 +00:00
module.exports = {
darkmode: true,
content: [
"./index.html",
"./src/**/*.{svelte,js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: '#141517',
secondary: '#1a1b1e',
tertiary: '#24272b',
accent: '#2284d9',
border_primary: '#373a40',
hover_secondary: '#2c2e33',
}
},
},
plugins: [],
}