feat: extend Tailwind CSS theme with custom colors

This commit is contained in:
Andras Bacsai
2025-08-14 13:06:02 +02:00
parent fc8552412d
commit 9bea891b0e
+14
View File
@@ -1,7 +1,21 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./docs/.vitepress/**/*.{js,ts,vue}',
'./docs/**/*.md',
],
darkMode: 'class',
theme: {
extend: {
colors: {
"coollabs": "#6b16ed",
"coollabs-100": "#7317ff",
"coolgray-100": "#181818",
"coolgray-200": "#202020",
"coolgray-300": "#242424",
"coolgray-400": "#282828",
"coolgray-500": "#323232",
}
}
}
}