-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
56 lines (56 loc) · 1.31 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
module.exports = {
content: [
'./app/views/**/*.rb',
'./app/views/**/*.html.erb',
'./app/helpers/**/*.rb',
'./app/assets/stylesheets/**/*.css',
'./app/javascript/**/*.js',
'./app/javascript/**/*.css'
],
theme: {
extend: {
colors: {
'apple': '#61ac3b',
'deep-azure': {
alfa: '#1d61aa',
beta: '#195595',
gamma: '#16487f',
DEFAULT: '#123c69',
delta: '#0e3053',
epsilon: '#0b233d',
zeta: '#071728'
},
'azure-tint': {
100: '#e7ebf0',
200: '#cfd8e1',
300: '#b7c4d2',
400: '#a0b1c3',
500: '#889db4',
600: '#708aa5',
700: '#597696',
800: '#416287',
900: '#294f78'
},
'ruby': {
alfa: '#cb688a',
beta: '#c5557b',
gamma: '#be426c',
DEFAULT: '#ac3b61',
delta: '#993456',
epsilon: '#862e4c',
zeta: '#732741'
},
'lily': '#bab2b5',
'watzusi': '#edc7b7',
'fair-pink': '#eee2dc',
'hover-pink': '#f6f0ed',
'azure-gray': '#e6e7e9'
},
},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
require('@tailwindcss/container-queries'),
]
}