-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
tailwind.config.cjs
108 lines (103 loc) · 3.5 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
darkMode: "class",
theme: {
extend: {
colors: {
//Dark Mode
"background1-DM": "#000000",
"htext1-DM": "#1DD762",
"ptext1-DM": "#F0F0F0",
"btn1-DM": "#1DD762",
"btn1Text-DM": "#000000",
"link1-DM": "#1DD762",
"link1Hov-DM": "#17a84d",
"alert1-DM": "#ff4e4e",
"border1-DM": "#F0F0F0",
"icon1-DM": "#F0F0F0",
"logo1-DM": "#F0F0F0",
"highlight1-DM": "#1DD762",
"iconbg1-DM": "#FFFFFF",
"inputBorder1-DM": "#A9A9A9",
"background2-DM": "#1F2937",
"htext2-DM": "#1DD762",
"ptext2-DM": "#F0F0F0",
"btn2-DM": "#1DD762",
"btn2Text-DM": "#000000",
"link2-DM": "#1DD762",
"link2Hov-DM": "#17a84d",
"alert2-DM": "#ff4e4e",
"border2-DM": "#F0F0F0",
"icon2-DM": "#F0F0F0",
"logo2-DM": "#F0F0F0",
"highlight2-DM": "#1DD762",
"iconbg2-DM": "",
"inputBorder2-DM": "",
//Light Mode
background1: "#FFFFFF",
htext1: "#198900",
ptext1: "#000000",
btn1: "#198900",
btn1Text: "#FFFFFF",
link1: "#198900",
link1Hov: "#005211",
alert1: "#c20000",
border1: "#000000",
icon1: "#000000",
logo1: "#000000",
highlight1: "#198900",
iconbg1: "#FFFFFF",
inputBorder1: "#A9A9A9",
background2: "#2D2D2D",
htext2: "#25DA49",
ptext2: "#F0F0F0",
btn2: "#25DA49",
btn2Text: "#2D2D2D",
link2: "#1DD762",
link2Hov: "#22a951",
alert2: "#fb5e5e",
border2: "#F0F0F0",
icon2: "#F0F0F0",
logo2: "#F0F0F0",
highlight2: "#25DA49",
iconbg2: "",
inputBorder2: "",
"shadow-LM": "#9E9E9E",
"shadow-DM": "#616161",
downloadBtn: "#030089",
},
typography: {
DEFAULT: {
css: {
blockquote: {
fontStyle: "normal",
},
"blockquote p:first-of-type::before": {
content: "none",
},
"blockquote p:last-of-type::after": {
content: "none",
},
},
},
},
keyframes: {
click: {
"0%, 100%": { transform: "translateY(0px)" },
"50%": { transform: "translateY(0.125rem)" },
},
},
animation: {
click: "click 200ms ease-in-out",
},
inset: {
2: "2px",
},
},
},
plugins: [
require("@tailwindcss/typography"),
require("tailwind-scrollbar")({ nocompatible: true }),
],
};