noteshare.space/webapp/tailwind.config.cjs
2022-06-24 22:20:55 +02:00

15 lines
321 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
colors: {
callout: 'rgb(var(--callout-color))',
'callout-bg': 'rgba(var(--callout-color), 0.1)'
}
}
},
plugins: [require('@tailwindcss/typography')]
};