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.
28 lines
599 B
28 lines
599 B
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./public/**/*.html', './src/**/*.{js,jsx,ts,tsx,vue}'],
|
|
theme: {
|
|
// colors: {
|
|
// transparent: 'transparent',
|
|
// current: 'currentColor',
|
|
// blue: {
|
|
// light: '#79bbff',
|
|
// DEFAULT: '#409eff',
|
|
// dark: '#337ecc'
|
|
// }
|
|
// }
|
|
extend: {
|
|
colors: {
|
|
transparent: 'transparent',
|
|
current: 'currentColor',
|
|
blue: {
|
|
light: '#79bbff',
|
|
DEFAULT: '#409eff',
|
|
dark: '#337ecc'
|
|
}
|
|
}
|
|
}
|
|
},
|
|
plugins: []
|
|
}
|