mirror of
https://github.com/arthyn/sphinx.git
synced 2024-12-26 09:24:04 +03:00
20 lines
406 B
JavaScript
20 lines
406 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
linen: '#FAEDE3',
|
|
fawn: '#E7AB79',
|
|
rosy: '#B25068',
|
|
lavender: '#774360',
|
|
mauve: '#4C3A51'
|
|
}
|
|
}
|
|
},
|
|
screens: {},
|
|
plugins: [
|
|
require('tailwindcss-labeled-groups')(['1', '2', '3'])
|
|
]
|
|
};
|