-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
60 lines (59 loc) · 1.58 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
const { iconsPlugin, getIconCollections } = require("@egoist/tailwindcss-icons");
module.exports = {
content: [
'./app/views/**/*.html.erb',
'./app/views/**/*.html.slim',
'./app/helpers/**/*.rb',
'./app/assets/stylesheets/**/*.css',
'./app/javascript/**/*.js'
],
plugins: [
require('daisyui'),
iconsPlugin({
collections: getIconCollections(["mdi", "lucide", "simple-icons"])
}),
],
daisyui: {
darkTheme: false,
themes: [
{
'mytheme': {
'primary': '#FC7400',
'secondary': '#695954',
'background': '#F9F7F4',
'surface': '#FFFFFF',
'error': '#FF0000',
'success': '#17DB4E',
'warning': '#FAB515',
},
}
]
},
theme: {
extend: {
colors: {
'app-primary': '#FC7400',
'app-primary-contrast': '#FFFFFF',
'app-secondary': '#695954',
'app-surface': '#FFFFFF',
'app-background': '#F9F7F4',
'app-background-contrast': '#FAF5ED',
'app-danger': '#FF0000',
'app-success': '17DB4E',
'app-alert': '#FAB515',
'app-already': '#66BB6A',
'app-already-border': '#C8E6C9',
'app-cancel': '#D32F2F',
'app-cancel-border': '#FFCDD2',
'app-edit': '#FF9800',
'app-edit-border': '#FFB74D',
'app-inactive': '#BDBDBD',
'app-inactive-border': '#E0E0E0',
'app-other-cancel': '#F4F4F4',
'app-other-cancel-border': '#E0E0E0',
'app-other-cancel-text': '#555555',
'header-footer': '#FAEBD4',
},
},
},
}