forked from cypress-io/cypress-documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
43 lines (43 loc) · 974 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
module.exports = {
/**
* All utilities will be marked with !important
* @see https://tailwindcss.com/docs/configuration#important
*/
darkMode: 'class',
important: false,
plugins: [require('@tailwindcss/forms')],
theme: {
extend: {
colors: {
transparent: 'transparent',
current: 'currentColor',
navy: {
DEFAULT: '#17202c',
},
lightGreen: '#cff1e6',
green: '#04c38d',
cyGreen: '#1dbe89',
contrastGreen: '#127458',
darkGreen: '#0b2d41',
blue: '#36c5ff',
yellow: '#e6ff1e',
violet: '#b163ff',
lightGray: '#f9fcfb',
indigo: {
50: '#F0F1FF',
100: '#DADDFE',
500: '#4956E3',
900: '#1C236D',
},
},
textColor: {
blue: '#1079c3',
green: '#127458',
black: 'rgb(46, 49, 56)',
},
spacing: {
sidebar: '290px',
},
},
},
}