2023-03-17 14:33:48 +00:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
2023-06-15 08:48:13 +00:00
|
|
|
content: [
|
2023-12-06 14:50:13 +00:00
|
|
|
'./vendor/wire-elements/modal/resources/views/*.blade.php',
|
|
|
|
'./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"],
|
|
|
|
},
|
|
|
|
colors: {
|
2023-07-13 11:16:24 +00:00
|
|
|
// applications: "#16A34A",
|
|
|
|
// databases: "#9333EA",
|
|
|
|
// "databases-100": "#9b46ea",
|
|
|
|
// destinations: "#0284C7",
|
|
|
|
// sources: "#EA580C",
|
|
|
|
// services: "#DB2777",
|
|
|
|
// settings: "#FEE440",
|
|
|
|
// iam: "#C026D3",
|
2023-06-15 08:48:13 +00:00
|
|
|
coollabs: "#6B16ED",
|
|
|
|
"coollabs-100": "#7317FF",
|
2023-07-13 11:16:24 +00:00
|
|
|
// coolblack: "#141414",
|
2023-06-15 08:48:13 +00:00
|
|
|
"coolgray-100": "#181818",
|
|
|
|
"coolgray-200": "#202020",
|
|
|
|
"coolgray-300": "#242424",
|
|
|
|
"coolgray-400": "#282828",
|
|
|
|
"coolgray-500": "#323232",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
variants: {
|
|
|
|
scrollbar: ["dark"],
|
|
|
|
extend: {},
|
|
|
|
},
|
|
|
|
daisyui: {
|
|
|
|
themes: [
|
|
|
|
{
|
|
|
|
coollabs: {
|
2023-11-10 08:41:42 +00:00
|
|
|
primary: "#202020",
|
2023-07-26 11:23:47 +00:00
|
|
|
"primary-focus": "#242424",
|
2023-08-29 08:11:18 +00:00
|
|
|
secondary: "#6B16ED",
|
2023-06-15 08:48:13 +00:00
|
|
|
accent: "#4338ca",
|
|
|
|
neutral: "#1B1D1D",
|
2023-11-10 08:41:42 +00:00
|
|
|
"base-100": "#101010",
|
2023-06-15 08:48:13 +00:00
|
|
|
info: "#2563EB",
|
|
|
|
success: "#16A34A",
|
|
|
|
warning: "#FCD34D",
|
|
|
|
error: "#DC2626",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
2023-05-12 13:39:07 +00:00
|
|
|
},
|
2023-06-15 08:48:13 +00:00
|
|
|
plugins: [
|
2023-07-13 11:16:24 +00:00
|
|
|
require("daisyui"),
|
2023-06-15 08:48:13 +00:00
|
|
|
require("tailwindcss-scrollbar"),
|
|
|
|
require("@tailwindcss/typography"),
|
2023-05-17 13:46:20 +00:00
|
|
|
],
|
2023-06-15 08:48:13 +00:00
|
|
|
};
|