21 lines
325 B
JavaScript
21 lines
325 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
kumamoto: {
|
|
green: '#4A7C59',
|
|
blue: '#5B8FA8',
|
|
light: '#F5F7F6',
|
|
}
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|