-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
44 lines (43 loc) · 1015 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
44
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
'./lib/**/*.{js,ts,jsx,tsx}',
],
safelist: [
'bg-warning',
'bg-yellow-400',
'text-yellow-400'
],
theme: {
extend: {
fontFamily: {
sans: ['Inter var', ...defaultTheme.fontFamily.sans],
},
colors: {
'primary': {
DEFAULT: '#00B49B',
'50': '#EAFBF5',
'100': '#D0F6EA',
'200': '#A2F1D8',
'300': '#76EFCD',
'400': '#3CECC3',
'500': '#09D7B2',
'600': '#00B49B',
'700': '#00A594',
'800': '#00958B',
'900': '#008682'
},
'gray-500': '#9eaea4',
'warning': '#FFA800',
'warning-100': 'rgba(255, 168, 0, 0.1)',
'gradient-start': '#06c17e',
'gradient-end': '#06c1ab',
},
},
},
plugins: [
require('@tailwindcss/forms')
],
}