mirror of
https://github.com/roc-lang/roc.git
synced 2025-07-13 09:35:01 +00:00
17 lines
279 B
JavaScript
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: [],
|
|
}
|
|
|