-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathtailwind.config.js
More file actions
34 lines (33 loc) · 820 Bytes
/
tailwind.config.js
File metadata and controls
34 lines (33 loc) · 820 Bytes
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
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'
}
}
}
},
plugins: [require('@tailwindcss/forms')]
}