-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
81 lines (80 loc) · 2.02 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
'use strict';
module.exports = {
mode: 'jit',
content: ['./frontend/src/**/*.html', './frontend/src/**/*.js', './frontend/src/**/**/*.html', './frontend/src/**/**/*.js'],
corePlugins: {
container: true
},
plugins: [],
theme: {
extend: {
colors: {
'puerto-rico': {
'50': '#eefffb',
'100': '#c6fff3',
'200': '#8effe8',
'300': '#4dfbdb',
'400': '#15d4b7',
'500': '#00ccb0',
'600': '#00a491',
'700': '#038276',
'800': '#08675f',
'900': '#0c554e',
'950': '#003432',
},
'teal': {
'50': '#eefffc',
'100': '#c5fffa',
'200': '#8bfff5',
'300': '#4afef0',
'400': '#15ece2',
'500': '#00d0c9',
'600': '#00a8a5',
'700': '#008888',
'800': '#066769',
'900': '#0a5757',
'950': '#003235',
},
'ultramarine': {
'50': '#f1f5ff',
'100': '#e5eaff',
'200': '#cedaff',
'300': '#a7b9ff',
'400': '#768cff',
'500': '#3f53ff',
'600': '#1823ff',
'700': '#0713fa',
'800': '#0510d2',
'900': '#060eac',
'950': '#000c87',
},
'forest-green': {
'50': '#ecfff1',
'100': '#d3ffe0',
'200': '#aaffc3',
'300': '#69ff95',
'400': '#21ff5f',
'500': '#00f23a',
'600': '#00ca2c',
'700': '#009e25',
'800': '#008726',
'900': '#02651f',
'950': '#00390e',
},
'valencia': {
'50': '#fdf3f3',
'100': '#fbe5e5',
'200': '#f9cfcf',
'300': '#f3aeae',
'400': '#eb7e7e',
'500': '#dc4949',
'600': '#ca3838',
'700': '#aa2b2b',
'800': '#8d2727',
'900': '#752727',
'950': '#3f1010',
}
}
}
}
};