-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
39 lines (39 loc) · 1.41 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
module.exports = {
daisyui: {
themes: [{
mytheme: {
"primary": "#84aea0",
"secondary": "#B85961",
"accent": "#fa5c38",
"neutral": "#FFFFFF",
"base-100": "#84aea0",
"info": "#00bfb2",
"success": "#007a78",
"warning": "#ffc845",
"error": "#e56db1",
},
},],
},
theme: {
extend: {
fontFamily: {
inter: ["Inter", "sans-serif"],
lexend: ["Lexend", "sans-serif"],
baloo: ["Baloo 2", "cursive"],
rubik: ["Rubik", "sans-serif"],
},
},
},
content: [
'./app/views/**/*.html.haml',
'./app/helpers/**/*.rb',
'./app/assets/stylesheets/**/*.css',
'./app/javascript/**/*.js'
],
plugins: [
require("daisyui"),
require('postcss-import'),
require('tailwindcss'),
require('autoprefixer')
],
}