mirror of
https://github.com/aljazceru/rabbit.git
synced 2025-12-17 14:04:21 +01:00
18 lines
504 B
JavaScript
18 lines
504 B
JavaScript
/* eslint global-require: "off", @typescript-eslint/no-var-requires: "off" */
|
|
const colors = require('tailwindcss/colors');
|
|
|
|
module.exports = {
|
|
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
// a color for primary actions like a submit button.
|
|
primary: colors.rose['300'],
|
|
'primary-disabled': colors.rose['200'],
|
|
'sidebar-bg': colors.rose['100'],
|
|
},
|
|
},
|
|
},
|
|
plugins: [require('@tailwindcss/forms')],
|
|
};
|