blob: 3a282375c0dcf11cf2d64ead39fdde9cb3068402 [file] [log] [blame]
Filip Kujawa3a0fbf32023-03-31 14:25:26 -07001/** @type {import('tailwindcss').Config} */
2module.exports = {
3 content: ['./src/**/*.{html,js,svelte,ts}'],
4 theme: {
5 extend: {}
6 },
7 plugins: [require('daisyui')],
8 daisyui: {
9 themes: [
10 {
11 mytheme: {
12 primary: '#facc15',
13
14 secondary: '#fde047',
15
16 accent: '#38bdf8',
17
18 neutral: '#72a8f8',
19
20 'base-100': '#d6d6d6',
21
22 info: '#14b8a6',
23
24 success: '#22c55e',
25
26 warning: '#FBBD23',
27
28 error: '#F87272'
29 }
30 }
31 ]
32 }
33};