creddy/tailwind.config.js

50 lines
1005 B
JavaScript
Raw Normal View History

2022-08-14 20:27:41 +00:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.{svelte,html}",
],
theme: {
extend: {},
},
2023-04-24 05:29:12 +00:00
plugins: [
require('daisyui'),
],
daisyui: {
themes: [
{
creddy: {
"primary": "#0ea5e9",
"secondary": "#fb923c",
"accent": "#8b5cf6",
"neutral": "#2f292c",
"base-100": "#252e3a",
"info": "#66cccc",
"success": "#52bf73",
"warning": "#d1a900",
"error": "#f87171",
},
},
{
"summer-night": {
"primary": "#0ea5e9",
"secondary": "#0ea5e9",
"accent": "#fb923c",
"neutral": "#393939",
"base-100": "#2d2d2d",
"info": "#66cccc",
"success": "#22c55e",
"warning": "#d1a900",
"error": "#f2777a"
},
},
"dark",
"night",
"dracula",
"sunset",
"dim",
"light"
]
},
2022-08-14 20:27:41 +00:00
}