22 lines
445 B
JavaScript
22 lines
445 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./pages/**/*.{js,ts,jsx,tsx}",
|
|
"./components/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: "#39ff14",
|
|
secondary: "#008a00",
|
|
sidebar: "#333333",
|
|
panel: "#252526",
|
|
content: "#1e1e1e",
|
|
bluePrimary: "#094c72",
|
|
blueSecondary: "#0c3953",
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|