| Server IP : 138.197.176.125 / Your IP : 216.73.217.122 Web Server : Apache/2.4.41 (Ubuntu) System : Linux SuiteCRM-8 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.3.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/smartsync-050226/ |
Upload File : |
import type { Config } from "tailwindcss";
export default {
darkMode: ["class"],
content: ["./client/index.html", "./client/src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
zIndex: {
99: '99',
999: '999',
9999: '9999',
99999: '99999',
},
borderRadius: {
lg: "var(--radius)",
md: "calc(var(--radius) - 2px)",
sm: "calc(var(--radius) - 4px)",
},
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
card: {
DEFAULT: "var(--card)",
foreground: "var(--card-foreground)",
},
customBlue: "#EAF5FF",
popover: {
DEFAULT: "var(--popover)",
foreground: "var(--popover-foreground)",
},
primary: {
DEFAULT: "var(--primary)",
foreground: "var(--primary-foreground)",
dark: "var(--primary-dark)",
light: "var(--primary-light)",
},
secondary: {
DEFAULT: "var(--secondary)",
foreground: "var(--secondary-foreground)",
},
muted: {
DEFAULT: "var(--muted)",
foreground: "var(--muted-foreground)",
},
accent: {
DEFAULT: "var(--accent)",
foreground: "var(--accent-foreground)",
},
destructive: {
DEFAULT: "var(--destructive)",
foreground: "var(--destructive-foreground)",
},
border: "var(--border)",
input: "var(--input)",
ring: "var(--ring)",
success: "var(--success)",
warning: "var(--warning)",
},
fontFamily: {
sans: ["var(--font-sans)"],
},
animation: {
float: "float 3s ease-in-out infinite",
"slide-right": "slideRight 2s ease-in-out infinite",
"pulse-slow": "pulse 3s ease-in-out infinite",
},
keyframes: {
float: {
"0%, 100%": {
transform: "translateY(0px)",
},
"50%": {
transform: "translateY(-10px)",
},
},
slideRight: {
"0%, 100%": {
transform: "translateX(0px)",
},
"50%": {
transform: "translateX(10px)",
},
},
},
},
},
plugins: [require("tailwindcss-animate"), require("@tailwindcss/typography")],
} satisfies Config;