-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
36 lines (35 loc) · 974 Bytes
/
tailwind.config.cjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
Color Variables: https://daisyui.com/docs/colors/
SvelteKit Guide: https://tailwindcss.com/docs/guides/sveltekit
Import to scroll to the bottom and see that we can use various prefixes
to apply our intented use of the color.
Example:
- bg-primary-content <-- Styles the background
- text-primary-content <-- Styles the forground *(text)*
*/
module.exports = {
content: ['./src/**/*.{html,js,svelte,ts}'],
daisyui: {
themes: [
{
theme: {
primary: '#FFC914',
secondary: '#59CD90',
neutral: '#EDEDF4',
accent: '#2364AA',
//accent: '#F15025',
// Base Colors for background | forground
'base-100': '#EDEDF4',
'base-200': '#555B6E',
'base-300': '#343434',
'base-400': '#303633',
'base-500': '#191919'
},
}
]
},
plugins: [
require('@tailwindcss/typography'),
require('daisyui')
],
}