-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
107 lines (106 loc) · 2.58 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
96
97
98
99
100
101
102
103
104
105
106
107
import type { Config } from "tailwindcss";
const config: Config = {
important: true,
content: [
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
container: {
center: true,
},
screens: {
md: "768px",
lg: "1280px",
xl: "1920px",
},
listStyleType: {
none: "none",
disc: "disc",
decimal: "decimal",
square: "square",
roman: "lower-roman",
},
extend: {
// All the widths and minHeights are follow the Figma section size to define
// mobile: The Mobile section size
// md: The Tablet section size
// lg: The Desktop section size
// xl: The Largest section size
width: {
mobile: "375px",
md: "768px",
lg: "1280px",
xl: "1920px",
},
height: {
"navbar-mobile": "60px",
"navbar-md": "60px",
"navbar-lg": "80px",
"navbar-xl": "80px",
},
minHeight: {
mobile: "667px",
md: "768px",
lg: "752px",
xl: "1000px",
},
padding: {
xMobile: "20px",
xMd: "40px",
xLg: "90px",
xXl: "100px",
yMobile: "26px",
yMd: "60px",
yLg: "80px",
yXl: "80px",
"navbar-mobile": "60px",
"navbar-md": "60px",
},
margin: {
xMobile: "20px",
xMd: "40px",
xLg: "90px",
xXl: "100px",
yMobile: "26px",
yMd: "60px",
yLg: "80px",
yXl: "80px",
"navbar-mobile": "60px",
"navbar-md": "60px",
},
colors: {
bondscape: {
primary: "#A579FF",
hover: "#FFF3E0",
surface: "#21202A",
text_neutral_50: "#28282D",
text_neutral_100: "#35343F",
text_neutral_200: "#4B4A58",
text_neutral_300: "#535162",
text_neutral_400: "#73708A",
text_neutral_500: "#858293",
text_neutral_600: "#9B99A9",
text_neutral_700: "#BCBBC4",
text_neutral_800: "#E3E2E6",
text_neutral_900: "#F6F6F7",
textGray: "#8F8F8F",
inactiveTab: "#9B99A9",
background: { primary: "#020014" },
},
feedback: {
success: "#14BD80",
warning: "#F9A72D",
error: "#E44A4A",
},
},
backgroundImage: {
"bondscape-home-bg-mobile":
"url('/bondscape-home-bg-mobile-masked.png')",
"bondscape-home-bg": "url('/bondscape-home-bg-masked.png')",
},
},
},
plugins: [],
};
export default config;