SloudhostPage/tailwind.config.js
SloudPL df7dddae70
Some checks are pending
Release / release (push) Waiting to run
Test / Run tests (push) Waiting to run
Moved from GitHub
2025-03-19 12:13:58 +01:00

16 lines
427 B
JavaScript

// @type {import('tailwindcss').Config}
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
darkMode: "class",
theme: {
extend: {
colors: {
"bright-blue": "#0096FF",
"dark-mode-black": "#09090B",
"dark-mode-gray": "#B5B5B6",
"dark-mode-gray-2": "#27272A",
},
},
},
plugins: [],
};