Model: Qwen 3.6 35B A3

Prompt: using `~/Downloads/Clockify - Empty Dashboard.html` update dashboard page to look just like the html file. Use linked css/js files to copy design exactly

Stats:
Context: 65,301 tokens
Time: 34m 20s
This commit is contained in:
Darius Rapalis
2026-04-28 22:30:06 +03:00
parent 3ed92810c3
commit 6f45f71b9f
36 changed files with 3770 additions and 20 deletions

View File

@@ -170,3 +170,45 @@
@apply bg-background text-foreground;
}
}
/* Clockify Design System */
:root {
--cl-primary: #03a9f4;
--cl-secondary: #4caf50;
--cl-danger: #f44336;
--cl-warning: #ff9800;
--cl-success: #4caf50;
--cl-info: #00bcd4;
--cl-bg-light: #f2f6f8;
--cl-bg-lighter: #e4eaee;
--cl-bg-white: #ffffff;
--cl-text-primary: #0a0e10;
--cl-text-secondary: #607d8b;
--cl-text-muted: #75919f;
--cl-text-light: #9ba8b0;
--cl-text-dark: #37474f;
--cl-sidebar-bg: #1d272c;
--cl-sidebar-bg-hover: #263238;
--cl-sidebar-border: #37474f;
--cl-border-light: #c6d2d9;
--cl-border-medium: #e4eaee;
--cl-radius-sm: 2px;
--cl-radius: 6px;
--cl-radius-lg: 8px;
}
.dark {
--cl-bg-light: #12191d;
--cl-bg-lighter: #1d272c;
--cl-bg-white: #1d272c;
--cl-text-primary: #f2f6f8;
--cl-text-secondary: #9ba8b0;
--cl-text-muted: #75919f;
--cl-text-light: #c6d2d9;
--cl-text-dark: #ccc;
--cl-sidebar-bg: #12191d;
--cl-sidebar-bg-hover: #1d272c;
--cl-sidebar-border: #37474f;
--cl-border-light: #37474f;
--cl-border-medium: #263238;
}

File diff suppressed because one or more lines are too long