23 lines
463 B
JavaScript
23 lines
463 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
|
|
const colors = require("tailwindcss/colors.js");
|
|
module.exports = {
|
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
neutral: colors.slate,
|
|
positive: colors.green,
|
|
urge: colors.violet,
|
|
warning: colors.yellow,
|
|
info: colors.blue,
|
|
critical: colors.red
|
|
}
|
|
},
|
|
},
|
|
plugins: [
|
|
require('a17t')
|
|
],
|
|
darkMode: 'class'
|
|
}
|