-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.ts
38 lines (37 loc) · 1.14 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
import type { Config } from "tailwindcss";
export default {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/ui/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
"twd-background": "#1B192E",
"twd-primary-purple": "#893FFC",
"twd-secondary-purple": "#3C246C",
"twd-navbar-background": "#31284C",
"twd-graph-background": "#262538",
"twd-text-link": "#3fb2fc",
"twd-cube-red": "#CC1111",
"twd-cube-yellow": "#FFAA22",
"twd-cube-blue": "#4488EE",
"twd-cube-green": "#99CC11",
"twd-mood-fight-red": "#FA4E56",
"twd-mood-freeze-red": "#FF7EB5",
"twd-mood-interest-yellow": "#D3A107",
"twd-mood-joy-yellow": "#FF8833",
"twd-mood-relief-green": "#6FDC8C",
"twd-mood-content-green": "#09BDB9",
"twd-mood-distress-blue": "#33B1FF",
"twd-mood-guilt-blue": "#4689FF",
},
boxShadow: {
glow: "0px 0px 15px 0px rgba(0, 0, 0, 0.3)",
},
},
},
plugins: [],
} satisfies Config;