-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
48 lines (47 loc) · 1.08 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
const defaultTheme = require('tailwindcss/defaultTheme')
const colors = require('tailwindcss/colors')
module.exports = {
purge: [
'./pages/**/*.tsx',
'./components/**/*.tsx',
'./react-bricks/**/*.tsx',
'./node_modules/react-bricks-ui/dist/*.js',
],
darkMode: 'class', // or 'media' or 'class'
theme: {
extend: {
colors: {
azure: colors.lightBlue,
pink: {
100: '#ffebef',
200: '#ffd6e0',
300: '#fdb4c6',
400: '#fb83a3',
500: '#f65a8e',
600: '#d9367f',
700: '#b43179',
800: '#8f2468',
900: '#691f53',
},
orange: colors.orange,
green: colors.lime,
},
gradientColorStops: {
ocean1: '#007cf0',
ocean2: '#00dfd8',
violet1: '#7928ca',
violet2: '#ff0080',
sun1: '#ff4d4d',
sun2: '#f9cb28',
},
padding: {
'1/10': '10%',
},
fontFamily: {
content: ['Nunito Sans', ...defaultTheme.fontFamily.sans],
},
},
},
variants: {},
plugins: [],
}