system-uicons/tailwind.config.js

21 lines
454 B
JavaScript
Raw Normal View History

2020-05-25 12:01:32 +02:00
module.exports = {
purge: ["./src/**/*.html"],
2020-05-25 12:01:32 +02:00
theme: {
2020-05-25 15:07:46 +02:00
fontFamily: {
mono: [
"Roboto Mono, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace",
],
},
2020-08-04 04:03:10 +02:00
scale: {
"200": "2",
},
2020-05-25 12:01:32 +02:00
},
variants: {
2020-05-26 08:33:11 +02:00
scale: ["responsive", "hover", "focus", "group-hover"],
backgroundColor: ["responsive", "hover", "focus", "focus-within"],
2020-05-25 12:01:32 +02:00
},
2020-05-26 03:33:49 +02:00
plugins: [
// Some useful comment
],
2020-05-25 15:07:46 +02:00
};