roc/crates/compiler/checkmate/www/tailwind.config.js
2023-07-17 10:12:17 -05:00

17 lines
279 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
mode: 'jit',
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
colors: {
'roc-purple': '#7c38f5',
'roc-purple-bg': '#ece2fd',
},
},
},
plugins: [],
}