-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
73 lines (73 loc) · 2.24 KB
/
tailwind.config.js
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
module.exports = {
content: ["./public/**/*.{html,js,tsx,ts}", "./pages/**/*.{html,js}"],
safelist: ["pl-2", "pl-4", "pl-6", "pl-8"],
theme: {
fontFamily: {
sans: 'ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"',
serif: 'ui-serif, Georgia, Cambria, "Times New Roman", Times, serif',
mono: 'ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace',
bitovipoppins:
'Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"',
},
extend: {
colors: {
blue: {
500: "#0747A6",
400: "#0052CC", // primary color
300: "#0065FF", // this is what we use
200: "#4C9AFF",
101: "#E9F2FF",
// 100: '#4C9AFF',
75: "#B3D4FF", // highlight effect
50: "#cadefc",
},
green: {
500: "#006644",
400: "#00875A",
300: "#36B37E",
200: "#57D9A3",
// 100: '#79F2C0',
75: "#ABF5D1",
},
red: {
500: "#BF2600",
},
yellow: {
500: "#FF8B00",
300: "#FFAB00",
},
neutral: {
801: "#44546F",
800: "#172B4D",
600: "#344563",
300: "#5E6C84",
200: "#6B778C",
100: "#7A869A",
80: "#97A0AF",
50: "#C1C7D0",
40: "#DFE1E6", // secondary buttton color
30: "#EBECF0",
20: "#F4F5F7", // stripe color
10: "#FAFBFC", //
301: "#091E4224",
201: "#091E420F", // NEW nuetral 6% opacity
},
orange: {
400: "#F5532D", // Bitovi color
},
slate: {
400: "#505F79",
300: "#44546F",
},
},
spacing: {
112: "28rem",
128: "32rem",
},
width: {
128: "28rem",
},
},
},
plugins: [require("@tailwindcss/container-queries")],
};