forked from datacamp/rdocumentation-2.0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
37 lines (37 loc) · 937 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
/* eslint-disable global-require */
module.exports = {
darkMode: 'class',
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
require('@tailwindcss/line-clamp'),
],
purge: ['./components/**/*.{js,ts,jsx,tsx}', './pages/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
'dc-beige100': '#FFFBF3',
'dc-beige200': '#F7F3EB',
'dc-beige300': '#EFEBE4',
'dc-beige400': '#E5E1DA',
'dc-blue': '#06BDFC',
'dc-green': '#03EF62',
'dc-grey100': '#F7F7FC',
'dc-grey200': '#EFEFEF',
'dc-grey300': '#E8E8EA',
'dc-grey400': '#D9D9E2',
'dc-navy': '#05192D',
'dc-orange': '#FF931E',
'dc-pink': '#FF6EA9',
'dc-purple': '#7933FF',
'dc-red': '#FF5400',
'dc-yellow': '#FCCE0D',
},
},
},
variants: {
extend: {
borderColor: ['dark'],
},
},
};