Some checks are pending
Bidi Control Character Guard / bidi-control-guard (push) Waiting to run
Circular Dependency Check / Check for new circular dependencies (push) Waiting to run
Citus Migration Smoke / Combined migrations on single-node Citus (push) Waiting to run
E2E Fresh Install Tests / fresh-install-e2e (push) Waiting to run
ext-v2 guardrails / Run ext-v2 guard and ESLint (push) Waiting to run
Integration Tests / Check for relevant changes (push) Waiting to run
Integration Tests / ${{ (github.event_name == 'schedule' || github.event.inputs.suite == 'full') && 'Full integration suite' || 'Tier-1 integration subset' }} (push) Blocked by required conditions
Mobile checks / Mobile lint + typecheck (push) Waiting to run
Mobile checks / Mobile unit tests (push) Waiting to run
Mobile checks / Mobile dependency audit (report) (push) Waiting to run
Mobile checks / Mobile reproducibility checks (push) Waiting to run
Secrets guard (env backups) / Ensure no tracked env backup files (push) Waiting to run
Temporal Readiness / fast-readiness (push) Waiting to run
Temporal Readiness / docker-parity (push) Waiting to run
TypeScript Type Check / Nx affected typecheck (push) Waiting to run
Unit Tests / Skipped-test budget (push) Waiting to run
Unit Tests / Nx affected unit tests (push) Waiting to run
Unit Tests / Server unit coverage (informational) (push) Waiting to run
Validate Tenant Management Schema / Check for relevant changes (push) Waiting to run
Validate Tenant Management Schema / Validate Tenant Management Schema (push) Blocked by required conditions
EE Workflows Build Guard / ee-workflows-build-guard (push) Waiting to run
Excluded: .git, node_modules, secrets/, compose.env, assemblyscript tgz Source: /opt/alga-psa on psa.joliet.tech
179 lines
7.9 KiB
TypeScript
Executable File
179 lines
7.9 KiB
TypeScript
Executable File
import type { Config } from "tailwindcss";
|
|
|
|
const config: Config = {
|
|
darkMode: 'class',
|
|
content: [
|
|
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
|
|
// EE UI lives outside this package but is imported via Next's `externalDir`.
|
|
"../ee/server/src/**/*.{js,ts,jsx,tsx,mdx}",
|
|
|
|
// Monorepo UI sources consumed by the Next.js app. Keep this list explicit to avoid
|
|
// accidentally scanning `node_modules` and to reduce Tailwind's file-watching workload.
|
|
"../packages/{ui,ui-kit,client-portal,clients,tickets,projects,scheduling,surveys,assets,documents,integrations,billing,auth,workflows,onboarding,tags,jobs,notifications,reference-data,tenancy,users,ee,sla}/src/**/*.{jsx,tsx,mdx}",
|
|
|
|
// A small number of `.ts` files contain Tailwind class strings (not JSX). Include them
|
|
// explicitly rather than enabling a broad `**/*.ts` glob.
|
|
"../packages/scheduling/src/components/technician-dispatch/utils.ts",
|
|
"../packages/tickets/src/actions/optimizedTicketActions.ts",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
gridTemplateColumns: {
|
|
'24': 'repeat(24, minmax(0, 1fr))',
|
|
'96': 'repeat(96, minmax(0, 1fr))',
|
|
},
|
|
textColor: {
|
|
main: {
|
|
base: 'rgb(var(--color-text-base))',
|
|
50: 'rgb(var(--color-text-50))',
|
|
100: 'rgb(var(--color-text-100))',
|
|
200: 'rgb(var(--color-text-200))',
|
|
300: 'rgb(var(--color-text-300))',
|
|
400: 'rgb(var(--color-text-400))',
|
|
500: 'rgb(var(--color-text-500))',
|
|
600: 'rgb(var(--color-text-600))',
|
|
700: 'rgb(var(--color-text-700))',
|
|
800: 'rgb(var(--color-text-800))',
|
|
900: 'rgb(var(--color-text-900))',
|
|
},
|
|
},
|
|
colors: {
|
|
// Base semantic colors for UI components
|
|
border: 'rgb(var(--color-border-200))',
|
|
background: 'rgb(var(--color-background) / <alpha-value>)',
|
|
foreground: 'rgb(var(--color-text-900))',
|
|
muted: {
|
|
DEFAULT: 'rgb(var(--color-border-100))',
|
|
foreground: 'rgb(var(--color-text-500))',
|
|
},
|
|
// Status colors
|
|
success: {
|
|
DEFAULT: 'rgb(var(--color-status-success) / <alpha-value>)',
|
|
foreground: 'rgb(var(--color-status-success-foreground) / <alpha-value>)',
|
|
},
|
|
warning: {
|
|
DEFAULT: 'rgb(var(--color-status-warning) / <alpha-value>)',
|
|
foreground: 'rgb(var(--color-status-warning-foreground) / <alpha-value>)',
|
|
},
|
|
error: {
|
|
DEFAULT: 'rgb(var(--color-status-error) / <alpha-value>)',
|
|
foreground: 'rgb(var(--color-status-error-foreground) / <alpha-value>)',
|
|
},
|
|
card: 'rgb(var(--color-card) / <alpha-value>)',
|
|
'card-foreground': 'rgb(var(--color-text-900))',
|
|
primary: {
|
|
DEFAULT: 'rgb(var(--color-primary-500) / <alpha-value>)',
|
|
foreground: 'rgb(var(--color-primary-50) / <alpha-value>)',
|
|
50: 'rgb(var(--color-primary-50) / <alpha-value>)',
|
|
100: 'rgb(var(--color-primary-100) / <alpha-value>)',
|
|
200: 'rgb(var(--color-primary-200) / <alpha-value>)',
|
|
300: 'rgb(var(--color-primary-300) / <alpha-value>)',
|
|
400: 'rgb(var(--color-primary-400) / <alpha-value>)',
|
|
500: 'rgb(var(--color-primary-500) / <alpha-value>)',
|
|
600: 'rgb(var(--color-primary-600) / <alpha-value>)',
|
|
700: 'rgb(var(--color-primary-700) / <alpha-value>)',
|
|
800: 'rgb(var(--color-primary-800) / <alpha-value>)',
|
|
900: 'rgb(var(--color-primary-900) / <alpha-value>)',
|
|
},
|
|
secondary: {
|
|
DEFAULT: 'rgb(var(--color-secondary-500) / <alpha-value>)',
|
|
foreground: 'rgb(var(--color-secondary-900) / <alpha-value>)',
|
|
50: 'rgb(var(--color-secondary-50) / <alpha-value>)',
|
|
100: 'rgb(var(--color-secondary-100) / <alpha-value>)',
|
|
200: 'rgb(var(--color-secondary-200) / <alpha-value>)',
|
|
300: 'rgb(var(--color-secondary-300) / <alpha-value>)',
|
|
400: 'rgb(var(--color-secondary-400) / <alpha-value>)',
|
|
500: 'rgb(var(--color-secondary-500) / <alpha-value>)',
|
|
600: 'rgb(var(--color-secondary-600) / <alpha-value>)',
|
|
700: 'rgb(var(--color-secondary-700) / <alpha-value>)',
|
|
800: 'rgb(var(--color-secondary-800) / <alpha-value>)',
|
|
900: 'rgb(var(--color-secondary-900) / <alpha-value>)',
|
|
},
|
|
accent: {
|
|
DEFAULT: 'rgb(var(--color-accent-500) / <alpha-value>)',
|
|
foreground: 'rgb(var(--color-accent-900) / <alpha-value>)',
|
|
50: 'rgb(var(--color-accent-50) / <alpha-value>)',
|
|
100: 'rgb(var(--color-accent-100) / <alpha-value>)',
|
|
200: 'rgb(var(--color-accent-200) / <alpha-value>)',
|
|
300: 'rgb(var(--color-accent-300) / <alpha-value>)',
|
|
400: 'rgb(var(--color-accent-400) / <alpha-value>)',
|
|
500: 'rgb(var(--color-accent-500) / <alpha-value>)',
|
|
600: 'rgb(var(--color-accent-600) / <alpha-value>)',
|
|
700: 'rgb(var(--color-accent-700) / <alpha-value>)',
|
|
800: 'rgb(var(--color-accent-800) / <alpha-value>)',
|
|
900: 'rgb(var(--color-accent-900) / <alpha-value>)',
|
|
},
|
|
sidebar: {
|
|
bg: 'var(--color-sidebar-bg)',
|
|
text: 'var(--color-sidebar-text)',
|
|
hover: 'var(--color-sidebar-hover)',
|
|
icon: 'var(--color-sidebar-icon)',
|
|
},
|
|
header: {
|
|
bg: 'var(--color-header-bg)',
|
|
text: 'var(--color-header-text)',
|
|
border: 'var(--color-header-border)',
|
|
icon: 'var(--color-sidebar-icon)',
|
|
},
|
|
subMenu: {
|
|
bg: 'var(--color-submenu-bg)',
|
|
text: 'var(--color-submenu-text)',
|
|
hover: 'var(--color-submenu-hover)',
|
|
icon: 'var(--color-submenu-icon)',
|
|
},
|
|
// Table row colors
|
|
'table-row-alt': 'rgb(var(--color-table-row-alt) / <alpha-value>)',
|
|
'table-hover': 'rgb(var(--color-table-hover) / <alpha-value>)',
|
|
'table-selected': 'rgb(var(--color-table-selected) / <alpha-value>)',
|
|
'table-status-approved': 'rgb(var(--color-table-status-approved) / <alpha-value>)',
|
|
'table-status-warning': 'rgb(var(--color-table-status-warning) / <alpha-value>)',
|
|
// Add destructive colors based on assumed CSS variables
|
|
destructive: 'rgb(var(--color-destructive) / <alpha-value>)',
|
|
'destructive-foreground': 'rgb(var(--color-destructive-foreground) / <alpha-value>)',
|
|
// Alert background colors — clean opaque tints per theme
|
|
'alert-destructive-bg': 'rgb(var(--color-alert-destructive-bg))',
|
|
'alert-warning-bg': 'rgb(var(--color-alert-warning-bg))',
|
|
'alert-success-bg': 'rgb(var(--color-alert-success-bg))',
|
|
'alert-info-bg': 'rgb(var(--color-alert-info-bg))',
|
|
},
|
|
backgroundColor: { // Extend background colors specifically
|
|
destructive: 'rgb(var(--color-destructive) / <alpha-value>)',
|
|
},
|
|
borderRadius: {
|
|
sm: 'var(--radius-sm)',
|
|
md: 'var(--radius-md)',
|
|
lg: 'var(--radius-lg)',
|
|
},
|
|
transitionDuration: {
|
|
fast: 'var(--duration-fast)',
|
|
normal: 'var(--duration-normal)',
|
|
slow: 'var(--duration-slow)',
|
|
},
|
|
borderColor: {
|
|
main: {
|
|
base: 'rgb(var(--color-border-base))',
|
|
50: 'rgb(var(--color-border-50))',
|
|
100: 'rgb(var(--color-border-100))',
|
|
200: 'rgb(var(--color-border-200))',
|
|
300: 'rgb(var(--color-border-300))',
|
|
400: 'rgb(var(--color-border-400))',
|
|
500: 'rgb(var(--color-border-500))',
|
|
600: 'rgb(var(--color-border-600))',
|
|
700: 'rgb(var(--color-border-700))',
|
|
800: 'rgb(var(--color-border-800))',
|
|
900: 'rgb(var(--color-border-900))',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
|
|
plugins: [
|
|
// require('@tailwindcss/forms'),
|
|
require('@tailwindcss/typography'),
|
|
require('@tailwindcss/container-queries'),
|
|
],
|
|
};
|
|
export default config;
|