-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
95 lines (90 loc) · 3.05 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
import type { Config } from "tailwindcss"
const config = {
darkMode: ["class"],
content: [
'./pages/**/*.{ts,tsx}',
'./components/**/*.{ts,tsx}',
'./app/**/*.{ts,tsx}',
'./src/**/*.{ts,tsx}',
],
prefix: "",
theme: {
extend: {
backgroundImage: () => ({
'gradient-custom': 'linear-gradient(229deg, rgba(255, 175, 175, 0.20) 19.95%, rgba(0, 0, 0, 0.04) 73.36%), linear-gradient(5deg, #346784 -16.61%, #062537 55.88%, #041B28 128.37%, #041B28 128.37%)',
}),
colors: {
'custom-red': '#FF8484',
'custom-blue':'#0B1F2E',
'custom-green': '#86FFA8',
'side-color': '#07202A',
'home-color': '#122848',
'nutrition-color': '#DA56B575',
'nutrition-background':'#2C0521',
'home-background':'#F4FDFF',
'exercise-background': "#07191C",
'custom-extralightpurple': '#95808F',
'custom-lightpurple': ' #71566c',
'custom-purple3': '#741B5B',
'custom-purple4': '#9F3C7F',
'custom-purple5': "#511D42",
'home-title':'#154154',
"button-blue": "#347BCE",
"mid-blue": "#2064B3",
"mid-red": "#C13131",
"light-red": "#DE4C4C",
"mid-green": "#278E7C",
"dark-green": "#194A48",
"input-green": "#2D3B3D",
"dark-purple": "#121535",
"input-purple": "#65677C",
"decoration-sleep-colordark": "#2D278E",
"decoration-sleep-colorlight": "#5044FF",
'dark-background-purple': "#3A0A2D",
'decoration-nutrition-colordark':'#861B68',
'decoration-nutrition-colorlight':'#F84AC7',
'decoration-home-colordark':'#9BD6E3',
'decoration-home-colorlight':'#154154',
'chat-color':'#133848',
'chat-background':'#16052C',
'search-background':'#ececec',
'ask-color':'#3868AF',
'answer-color':'#741B5B',
'question-color':'#133848',
'input-home': 'rgba(105, 201, 255, 0.19)',
'button-home': '#3868AF',
'color-home2':'#2E7390',
'color-home3':'#BFEBFF',
'color-home4':'#1D154A',
'color-home5':'#2D7593',
'color-home6':'#144154',
'color-home7':'#94D8F3',
'reminders-background':'#05272C',
'reminders-color':'#41B0C0',
'reminders-input':'#041C1F',
'reminder-mid-gray':'#4F676B',
'reminder-low-gray':'#577175',
'title-profile':'#353535',
'toggle-title':'#186476',
'toggle-content': 'rgba(89, 157, 180, 0.38)',
'sleep-mid':'#37346F',
'sleep-high':'#191E55',
'sleep-low':'#211F3F',
'speech-button':'#925FD4',
border: "hsl(var(--border))",
input: "hsl(var(--input))",
"purple-1": "#7857FF",
"purple-2": "#1D1928",
"pink-1": "#FF0073",
"light-1": "#FFFFFF",
"light-2": "#808080",
"light-3": "#626067",
"dark-1": "#121212",
"dark-2": "#34303E",
"blue-1": "#016FD5"
},
},
},
plugins: [require("tailwindcss-animate")],
} satisfies Config
export default config