This repository has been archived on 2024-06-24. You can view files and clone it, but cannot push or open issues or pull requests.
wgdash/tailwind.config.js
Christoph Heiss 688d012309
Initial commit
Signed-off-by: Christoph Heiss <contact@christoph-heiss.at>
2022-07-15 00:11:42 +02:00

27 lines
503 B
JavaScript

const colors = require('tailwindcss/colors');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/{components,pages}/**/*.tsx',
],
theme: {
extend: {
colors: {
neutral: colors.slate,
positive: colors.green,
urge: colors.violet,
warning: colors.yellow,
info: colors.blue,
critical: colors.red,
},
minWidth: {
'1/2': '50%',
},
},
},
plugins: [
require('a17t'),
],
};