Asteri-Vostok/tailwind.config.js

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",
grayPrimary: "#4f4f4f",
graySecondary: "#202020",
}
},
},
plugins: [],
};