mirror of https://github.com/wg-easy/wg-easy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
762 B
36 lines
762 B
import type { Config } from 'tailwindcss';
|
|
import type { PluginAPI } from 'tailwindcss/types/config';
|
|
// import { red } from 'tailwindcss/colors.js';
|
|
|
|
export default {
|
|
darkMode: 'selector',
|
|
content: [],
|
|
theme: {
|
|
screens: {
|
|
xxs: '450px',
|
|
xs: '576px',
|
|
sm: '640px',
|
|
md: '768px',
|
|
lg: '1024px',
|
|
xl: '1280px',
|
|
'2xl': '1536px',
|
|
},
|
|
extend: {
|
|
colors: {
|
|
// DEFAULT: red[800],
|
|
// primary: red[800],
|
|
},
|
|
},
|
|
},
|
|
plugins: [
|
|
function addDisabledClass({ addUtilities }: PluginAPI) {
|
|
const newUtilities = {
|
|
'.is-disabled': {
|
|
opacity: '0.25',
|
|
cursor: 'default',
|
|
},
|
|
};
|
|
addUtilities(newUtilities);
|
|
},
|
|
],
|
|
} satisfies Config;
|
|
|