Asteri-Vostok/tailwind.config.js

19 lines
347 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: "#78b856",
sidebar: "#333333",
panel: "#252526",
content: "#1e1e1e",
}
},
},
plugins: [],
};