-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
42 lines (41 loc) · 902 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
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
content: [
'./app/views/**/*.html.erb',
'./app/helpers/**/*.rb',
'./app/javascript/**/*.js',
'./app/components/**/*.html.erb',
'./app/components/**/*.rb',
],
plugins: [
require('@tailwindcss/forms'),
require("daisyui"),
],
theme: {
extend: {
colors: {
'pantone': {
'DEFAULT': '#BB2649',
'50': '#EEABBA',
'100': '#EA9AAD',
'200': '#E47891',
'300': '#DD5676',
'400': '#D6345A',
'500': '#BB2649',
'600': '#8C1D37',
'700': '#5E1325',
'800': '#2F0A12',
'900': '#000000'
},
},
},
extend: {
screens: {
'print': {'raw': 'print'}
}
},
},
daisyui: {
themes: ["autumn", "cmyk", "halloween", "dark", "winter"],
}
}