-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
50 lines (47 loc) · 1.15 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
43
44
45
46
47
48
49
const colors = require('tailwindcss/colors')
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
// ".storybook/**/*.{js,ts,jsx,tsx}",
],
theme: {
fontFamily: { "awesome": ["Font Awesome 5 Free"] },
extend: {
colors: {
"ev-primary": {
DEFAULT: "#499AAC",
hard: colors.cyan[600],
harder: colors.cyan[700]
},
"ev-secondary": {
DEFAULT: "#DE7A4F",
hard: colors.orange[600],
harder: colors.orange[700],
},
"ev-dark": {
DEFAULT: "#1C1C1C",
hard: colors.neutral[700],
harder: colors.neutral[600],
},
"ev-light": {
DEFAULT: "#F8F1E5",
hard: colors.neutral[200],
harder: colors.neutral[300],
},
"ev-destructive": {
DEFAULT: "#d63e3e",
hard: colors.red[600],
harder: colors.red[700],
},
},
},
},
darkMode: 'class',
plugins: [],
purge: {
enabled: process.env.NODE_ENV === 'publish',
content: ['./src/**/*.{js,jsx,ts,tsx}']
},
}