Asteri-Vostok/tailwind.config.js

20 lines
395 B
JavaScript

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