noteshare.space/webapp/tailwind.config.cjs

15 lines
321 B
JavaScript
Raw Normal View History

2022-06-22 00:30:11 +03:00
/** @type {import('tailwindcss').Config} */
module.exports = {
2022-06-22 19:01:08 +03:00
darkMode: 'class',
2022-06-22 00:30:11 +03:00
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
2022-06-24 23:20:55 +03:00
extend: {
colors: {
callout: 'rgb(var(--callout-color))',
'callout-bg': 'rgba(var(--callout-color), 0.1)'
}
}
2022-06-23 21:02:21 +03:00
},
plugins: [require('@tailwindcss/typography')]
2022-06-22 00:30:11 +03:00
};