-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtailwind.config.ts
79 lines (72 loc) · 2.81 KB
/
tailwind.config.ts
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import type { Config } from 'tailwindcss'
const config: Config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
fontFamily: {
important: "var(--font-dosis)",
header: "var(--font-dosis)",
body: "var(--font-dosis)",
},
},
},
daisyui: {
darkTheme: "dark", // name of one of the included themes for dark mode
base: true, // applies background color and foreground color for root element by default
styled: true, // include daisyUI colors and design decisions for all components
utils: true, // adds responsive and modifier utility classes
prefix: "", // prefix for daisyUI classnames (components, modifiers and responsive class names. Not colors)
logs: true, // Shows info about daisyUI version and used config in the console when building your CSS
themeRoot: ":root", // The element that receives theme color CSS variables
themes: [
{
// https://color.adobe.com/create/color-wheel
// https://pinetools.com/invert-color
dark: {
"color-scheme": "dark",
"primary": "#E6A900", // Golden
"primary-content": "#ebe6d8",
"neutral": "#495bb3", // Lime-ish?
"neutral-content": "#d3d5e6",
"secondary": "#00a164", // Water blue
"secondary-content": "#ddf0e8",
"accent": "#bd2455", // Ruby
"accent-content": "#f2dfe7",
"base-content": "#87858c",
"base-100": "#22212e",
"base-200": "#191824",
"base-300": "#11101a",
"info": "#00a1d6", // Cyan 195deg
"success": "#00d600", // Green 120deg
"warning": "#d68f00", // Orange 40deg
"error": "#d60000", // Red 0deg
},
light: {
"color-scheme": "light",
"primary": "#d99f00", // Golden
"primary-content": "#302400",
"neutral": "#3f4e99", // Lime-ish?
"neutral-content": "#002416",
"secondary": "#00945b", // Water blue
"secondary-content": "#000938",
"accent": "#b0214e", // Ruby
"accent-content": "#29000d",
"base-content": "#75737a", // Inverse of dark base-content hued back to neutral
"base-100": "#e7e6f0", // Inverse of dark base-300 hued back to neutral
"base-200": "#dedce8", // Inverse of dark base-200 hued back to neutral
"base-300": "#d2d1de", // Inverse of dark base-100 hued back to neutral
"info": "#00a1d6", // Cyan 195deg
"success": "#00d600", // Green 120deg
"warning": "#d68f00", // Orange 40deg
"error": "#d60000", // Red 0deg
},
},
],
},
plugins: [require("daisyui")],
}
export default config