/** @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' }