-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
28 lines (28 loc) · 948 Bytes
/
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
module.exports = {
content: [],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
montserrat: ['Montserrat'],
roboto: ['Roboto']
},
colors: {
// https://coolors.co/palette/e63946-f1faee-a8dadc-457b9d-1d3557
// https://coolors.co/palette/780000-c1121f-fdf0d5-003049-669bbc
// https://coolors.co/palette/2b2d42-8d99ae-edf2f4-ef233c-d90429
primary: '#FF2943', // #FF2943 - #EF233C
'primary-light': '#D90429',
secondary: '#2172a4',
'secondary-highlight': '#30a9f3',
disabled: '#707374',
'bg-light': '#8D99AE',
bg: '#2B2D42',
'body-bg': '#202125',
'blackjack-light': '#287d31',
'blackjack-dark': '#216528'
}
}
},
plugins: []
}