-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
43 lines (42 loc) · 1 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
const defaultTheme = require('tailwindcss/defaultTheme')
const colors = require('tailwindcss/colors')
module.exports = {
darkMode: 'class',
content: [
'./src/pages/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
'./node_modules/@apideck/components/**/*.js'
],
theme: {
extend: {
fontFamily: {
'basier-circle': ['Basier Circle', ...defaultTheme.fontFamily.sans]
},
colors: {
gray: colors.slate,
primary: {
50: '#f6f7fe',
100: '#f2f3fd',
200: '#e0e1fa',
300: '#c9c8f4',
400: '#aba4ea',
500: '#9182de',
600: '#775ad8',
700: '#6434d5',
800: '#5922b9',
900: '#5a1aa8'
},
ui: {
200: '#878ac6',
300: '#545592',
400: '#414386',
500: '#292d6a',
600: '#21255c',
700: '#080b4b',
800: '#04072d'
}
}
}
},
plugins: [require('@tailwindcss/forms')]
}