2023-03-17 14:33:48 +00:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
2024-03-19 14:37:16 +00:00
|
|
|
const colors = {
|
|
|
|
"base": "#101010",
|
|
|
|
"warning": "#FCD452",
|
|
|
|
"success": "#16A34A",
|
|
|
|
"error": "#DC2626",
|
|
|
|
"coollabs": "#6B16ED",
|
|
|
|
"coollabs-100": "#7317FF",
|
|
|
|
"coolgray-100": "#181818",
|
|
|
|
"coolgray-200": "#202020",
|
|
|
|
"coolgray-300": "#242424",
|
|
|
|
"coolgray-400": "#282828",
|
|
|
|
"coolgray-500": "#323232",
|
|
|
|
}
|
2023-03-17 14:33:48 +00:00
|
|
|
module.exports = {
|
2024-03-19 14:37:16 +00:00
|
|
|
darkMode: "selector",
|
2023-06-15 08:48:13 +00:00
|
|
|
content: [
|
2023-12-06 14:50:13 +00:00
|
|
|
'./storage/framework/views/*.php',
|
2023-06-15 08:48:13 +00:00
|
|
|
"./resources/**/*.blade.php",
|
2023-07-13 11:16:24 +00:00
|
|
|
"./app/**/*.php",
|
2023-06-15 08:48:13 +00:00
|
|
|
"./resources/**/*.js",
|
|
|
|
"./resources/**/*.vue",
|
|
|
|
],
|
|
|
|
theme: {
|
|
|
|
extend: {
|
|
|
|
fontFamily: {
|
|
|
|
sans: ["Inter", "sans-serif"],
|
|
|
|
},
|
2024-03-19 14:37:16 +00:00
|
|
|
colors
|
2023-06-15 08:48:13 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
require("tailwindcss-scrollbar"),
|
|
|
|
require("@tailwindcss/typography"),
|
2024-03-19 14:37:16 +00:00
|
|
|
require("@tailwindcss/forms")
|
2023-05-17 13:46:20 +00:00
|
|
|
],
|
2023-06-15 08:48:13 +00:00
|
|
|
};
|