mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-09-22 19:23:31 +00:00
22 lines
389 B
JavaScript
22 lines
389 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
darkMode: 'class',
|
|
content: [
|
|
'./src/public/**/*.html',
|
|
'./src/public/**/*.js',
|
|
],
|
|
safelist: [
|
|
'opacity-60',
|
|
{
|
|
pattern: /^(bg|text)-(red|yellow|green|blue)-(100|200|300|400|500|600|700|800|900)(\/50)?$/,
|
|
},
|
|
'vm-icon',
|
|
'ct-icon',
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|