-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
38 lines (37 loc) · 876 Bytes
/
tailwind.config.js
File metadata and controls
38 lines (37 loc) · 876 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,njk,md}", "./src/**/*.svg",],
theme: {
extend: {
colors: {
'theme': {
'50': '#f1fcf4',
'100': '#dff9e8',
'200': '#c0f2d2',
'300': '#78e2a0',
'400': '#56d285',
'500': '#2fb863',
'600': '#21984f',
'700': '#1d7840',
'800': '#1c5f36',
'900': '#194e2f',
'950': '#082b18',
},
'shark': {
'50': '#f6f7f9',
'100': '#eceef2',
'200': '#d5d9e2',
'300': '#b1b9c8',
'400': '#8693aa',
'500': '#677690',
'600': '#525e77',
'700': '#434c61',
'800': '#3a4252',
'900': '#343946',
'950': '#1f222a',
},
}
},
},
plugins: [],
}