-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
42 lines (41 loc) · 1.01 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
const colors = require('tailwindcss/colors');
module.exports = {
content: [
'./src/**/*.{js,jsx,ts,tsx}', './public/index.html'
],
darkMode: false,
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
blue: colors.blue,
black: colors.black,
white: colors.white,
gray: colors.trueGray,
green: colors.emerald,
indigo: colors.indigo,
red: colors.rose,
yellow: colors.amber,
orange: colors.orange,
teal: colors.teal,
dark: '#0b0c10',
grayish: {
DEFAULT: '#1f2833',
light: '#c5c6c7',
},
turquoise: {
DEFAULT: '#66fcf1',
dark: '#45a29e',
},
},
extend: {
width: {
'140': '35rem',
}
},
},
variants: {
extend: {},
},
plugins: [],
};