Spaces:
Build error
Build error
File size: 540 Bytes
94ae088 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
'calc-bg': '#f5f5f5',
'calc-btn': '#e0e0e0',
'calc-btn-hover': '#d5d5d5',
'calc-btn-active': '#c0c0c0',
'calc-btn-operator': '#ff9500',
'calc-btn-operator-hover': '#e68a00',
'calc-btn-operator-active': '#cc7f00',
'calc-display': '#ffffff',
},
},
},
plugins: [],
} |