Filip Kujawa | 3a0fbf3 | 2023-03-31 14:25:26 -0700 | [diff] [blame^] | 1 | /** @type {import('tailwindcss').Config} */ |
2 | module.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 | }; |