Files
marketplaces/src/styles/themes/dexar.theme.scss

43 lines
1.1 KiB
SCSS
Raw Normal View History

2026-02-14 00:45:17 +04:00
// Dexar Theme - Redesigned 2026 - Green/Teal Colors
2026-01-18 18:57:06 +04:00
:root {
2026-02-14 00:45:17 +04:00
--primary-color: #497671;
--primary-hover: #3d635f;
--secondary-color: #a1b4b5;
--secondary-hover: #8da3a4;
--accent-color: #a7ceca;
--accent-hover: #91b9b5;
2026-01-18 18:57:06 +04:00
2026-02-14 00:45:17 +04:00
--gradient-primary: linear-gradient(360deg, #497671 0%, #a7ceca 100%);
--gradient-secondary: linear-gradient(135deg, #a1b4b5 0%, #677b78 100%);
--gradient-hero: linear-gradient(360deg, #497671 0%, #a7ceca 100%);
2026-01-18 18:57:06 +04:00
2026-02-14 00:45:17 +04:00
--text-primary: #1e3c38;
--text-secondary: #667a77;
--text-light: #828e8d;
2026-01-18 18:57:06 +04:00
--bg-primary: #ffffff;
2026-02-14 02:34:11 +04:00
--bg-secondary: #f5f5f5;
--bg-tertiary: #f0f0f0;
2026-02-14 00:45:17 +04:00
--bg-header: rgba(117, 121, 124, 0.1);
2026-01-18 18:57:06 +04:00
--success-color: #10b981;
--warning-color: #f59e0b;
--error-color: #ef4444;
--info-color: #3b82f6;
2026-02-14 00:45:17 +04:00
--border-color: #d3dad9;
--border-dark: #677b78;
2026-01-18 18:57:06 +04:00
--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
2026-02-14 00:45:17 +04:00
--shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
--shadow-lg: 0 12px 32px rgba(73, 118, 113, 0.2);
2026-01-18 18:57:06 +04:00
--radius-sm: 8px;
--radius-md: 12px;
2026-02-14 00:45:17 +04:00
--radius-lg: 13px;
--radius-xl: 22px;
2026-01-18 18:57:06 +04:00
}
2026-02-14 02:34:11 +04:00
body {
font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}