-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
39 lines (38 loc) · 946 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
const colors = require('tailwindcss/colors')
module.exports = {
content: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
theme: {
fontFamily: {
sans: ['"DM Sans"', 'system-ui', 'Roboto','sans-serif'],
},
extend: {
colors: {
planb: '#ff5100',
primary: '#00069A', //#2400FF,#001AFF,3E82B9
highlight: '#32E178',
secondary: '#A300FF',
primarylight: '#3347FF',
'paper': {
DEFAULT: '#F7F4EF',
'50': '#FFFFFE',
'100': '#FCFBF9',
'200': '#F7F4EF',
'300': '#EBE4D7',
'400': '#DFD3BF',
'500': '#D3C3A8',
'600': '#C7B390',
'700': '#BCA278',
'800': '#B09260',
'900': '#9D804F'
},
}
},
container: {
center: false,
},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
],
}