-
Notifications
You must be signed in to change notification settings - Fork 5
/
tailwind.config.cjs
60 lines (60 loc) · 1.21 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class",
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
fontFamily: {
sans: "Raleway",
},
fontSize: {
base: "17.4px",
},
colors: {
blue: {
50: "#E0FFFF",
100: "#C2FFFF",
200: "#85FFFF",
300: "#47FFFF",
400: "#0AFFFF",
500: "#00CCCC",
600: "#00A3A3",
700: "#007A7A",
800: "#005252",
900: "#002929",
950: "#001414",
},
dtGrayBg: "#2f3136",
dtGrayBg2: "rgb(42, 44, 49)",
},
},
},
plugins: [require("daisyui")],
safelist: [
{
pattern: /^col-span-\d+$/,
variants: ["sm", "md", "lg", "xl", "2xl"],
},
],
daisyui: {
styled: true,
themes: [
"light",
{
discretizeDark: {
primary: "#00CCCC",
secondary: "#BD93F9",
accent: "#00CCCC",
neutral: "#2f3136",
"base-100": "#26292e",
},
},
],
base: false,
utils: false,
logs: true,
rtl: false,
prefix: "",
darkTheme: "dark",
},
};