-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
41 lines (41 loc) · 1.02 KB
/
tailwind.config.js
File metadata and controls
41 lines (41 loc) · 1.02 KB
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
const colors = require('tailwindcss/colors');
module.exports = {
mode: 'jit',
purge: [
'./src/pages/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
'./src/layouts/**/*.{js,ts,jsx,tsx}',
],
plugins: [require('@tailwindcss/forms'), require('@tailwindcss/aspect-ratio')],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
transparent: 'transparent',
current: 'currentColor',
black: colors.black,
white: colors.white,
gray: colors.coolGray,
red: colors.red,
yellow: colors.amber,
orange: colors.orange,
green: colors.emerald,
blue: colors.blue,
indigo: colors.indigo,
purple: colors.violet,
pink: colors.pink,
rose: colors.rose,
teal: colors.teal,
primary: '#005059',
customGray: {
450: '#BEBEBE',
550: '#707070',
},
primaryLight: '#0050590d',
},
},
},
variants: {
extend: {},
},
};