-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
37 lines (34 loc) · 823 Bytes
/
tailwind.config.ts
File metadata and controls
37 lines (34 loc) · 823 Bytes
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
const config = {
theme: {
// fontFamily: {
// light: ["PlusJakartaSans-Light"],
// regular: ["PlusJakartaSans-Regular"],
// medium: ["PlusJakartaSans-Medium"],
// semibold: ["PlusJakartaSans-SemiBold"],
// bold: ["PlusJakartaSans-Bold"],
// italic: ["PlusJakartaSans-Italic"],
// },
extend: {
colors: {
dark: "#15202a",
primary: "#363F72",
primaryLight: "#717BBC",
primaryUltraLight: "#EBF2FF",
backgroundChat: "#4E5BA6",
textChat: "#15202A",
background: "#f4f5f6",
secondary: "#FCE7F6",
secondaryLight: "#fcebf7",
defaultGray: "#6A829A",
lightGray: "#AFB5D9",
darkGray: "#EAECF5",
pink: "#F670C7",
red2: "#B42318",
production: "#FDA29B",
encours: "#6172F3",
structured: "#7CD4FD",
},
},
},
} ;
export default config;