2021-08-11 08:16:02 +00:00
|
|
|
module.exports = {
|
2024-05-09 13:11:47 +00:00
|
|
|
content: [
|
2021-08-11 21:17:23 +00:00
|
|
|
"../lib/**/*.ex",
|
|
|
|
"../lib/**/*.leex",
|
|
|
|
"../lib/**/*.eex",
|
2021-10-07 03:36:08 +00:00
|
|
|
"../lib/**/*.heex",
|
2021-08-11 21:17:23 +00:00
|
|
|
"./js/**/*.js",
|
|
|
|
],
|
2024-05-09 13:11:47 +00:00
|
|
|
darkMode: 'media', // or 'media' or 'class'
|
2021-08-11 08:16:02 +00:00
|
|
|
theme: {
|
2021-08-11 21:17:23 +00:00
|
|
|
extend: {
|
2024-05-09 13:11:47 +00:00
|
|
|
colors: {
|
|
|
|
amber: "#ff9800",
|
|
|
|
"light-grey": "#212121",
|
2021-08-11 21:17:23 +00:00
|
|
|
},
|
2024-05-09 13:11:47 +00:00
|
|
|
},
|
2021-08-11 08:16:02 +00:00
|
|
|
},
|
|
|
|
variants: {
|
|
|
|
extend: {},
|
|
|
|
},
|
|
|
|
plugins: [],
|
2021-08-11 21:17:23 +00:00
|
|
|
};
|