-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
130 lines (129 loc) · 2.86 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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
colors: {
'bunker': {
'50': '#f6f7f9',
'100': '#eceff2',
'200': '#d6dbe1',
'300': '#b1bdc8',
'400': '#8799a9',
'500': '#687c8f',
'600': '#536476',
'700': '#445160',
'800': '#3b4551',
'900': '#343c46',
'950': '#15181c',
},
'gray': {
'50': '#f4f7f9',
'100': '#ecf0f3',
'200': '#dce5e9',
'300': '#c6d4db',
'400': '#aebfcb',
'500': '#99aabb',
'600': '#8292a9',
'700': '#707e92',
'800': '#5c6877',
'900': '#4e5761',
'950': '#2d3239',
},
'malachite': {
'50': '#eefff1',
'100': '#d7ffe1',
'200': '#b2ffc3',
'300': '#77fe97',
'400': '#35f362',
'500': '#0bdc3e',
'600': '#02c030',
'700': '#068f28',
'800': '#0b7024',
'900': '#0b5c21',
'950': '#00340e',
},
'west-side': {
'50': '#fff9ed',
'100': '#fff2d4',
'200': '#ffe2a8',
'300': '#ffcc70',
'400': '#ffab37',
'500': '#ff900f',
'600': '#f07406',
'700': '#c75807',
'800': '#9e440e',
'900': '#7f3a0f',
'950': '#451b05',
},
'picton-blue': {
'50': '#f0f9ff',
'100': '#e1f2fd',
'200': '#bbe6fc',
'300': '#80d2f9',
'400': '#40bcf4',
'500': '#13a2e4',
'600': '#0682c3',
'700': '#06679e',
'800': '#0a5882',
'900': '#0e496c',
'950': '#092f48',
},
'red': {
'50': '#fff0f0',
'100': '#ffdddd',
'200': '#ffc0c0',
'300': '#ff9494',
'400': '#ff5757',
'500': '#ff2323',
'600': '#ff0000',
'700': '#d70000',
'800': '#b10303',
'900': '#920a0a',
'950': '#500000',
},
'black': {
'50': '#f6f6f6',
'100': '#e7e7e7',
'200': '#d1d1d1',
'300': '#b0b0b0',
'400': '#888888',
'500': '#6d6d6d',
'600': '#5d5d5d',
'700': '#4f4f4f',
'800': '#454545',
'900': '#3d3d3d',
'950': '#000000',
},
'east-bay': {
'50': '#f2f3fb',
'100': '#e6e9f9',
'200': '#d3d5f2',
'300': '#b7baea',
'400': '#9c9adf',
'500': '#8a81d3',
'600': '#7867c4',
'700': '#6757ab',
'800': '#54488b',
'900': '#4b4376',
'950': '#2a2541',
},
transparent: 'transparent',
white: '#ffffff',
},
screens: {
sm: '480px',
md: '768px',
lg: '976px',
xl: '1440px',
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
extend: {
},
},
plugins: [],
}