-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathtailwind.config.js
More file actions
45 lines (45 loc) · 1.12 KB
/
tailwind.config.js
File metadata and controls
45 lines (45 loc) · 1.12 KB
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
44
45
module.exports = {
content: [
'./app/views/**/*.html.erb',
'./app/helpers/**/*.rb',
'./app/assets/stylesheets/**/*.css',
'./app/javascript/**/*.js'
],
theme: {
extend: {
fontFamily: {
inter: ['Inter', 'sans-serif'],
},
},
},
daisyui: {
themes: ["light", {
mytheme: {
"primary": "#D82028",
"primary-content": "#FFFFFF",
"secondary": "#F000B8",
"accent": "#37CDBE",
"neutral": "#3D4451",
"base-100": "#FFFFFF",
"base-content": "#1f2937",
"info": "#3ABFF8",
"success": "#36D399",
"warning": "#FBBD23",
"error": "#F87272",
},
}],
darkTheme: false,
base: true,
styled: true,
utils: true,
},
screens: {
xs: '576',
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
'2xl': '1536px',
},
plugins: [require("@tailwindcss/typography"), require("daisyui")],
}