codexly-ui 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,84 @@
1
+ /* ── Roboto 300 Light ──────────────────────────────────────────────────────── */
2
+ @font-face {
3
+ font-family: 'Roboto';
4
+ font-style: normal;
5
+ font-weight: 300;
6
+ font-display: swap;
7
+ src: url('../fonts/roboto-light.ttf') format('truetype');
8
+ }
9
+
10
+ @font-face {
11
+ font-family: 'Roboto';
12
+ font-style: italic;
13
+ font-weight: 300;
14
+ font-display: swap;
15
+ src: url('../fonts/roboto-light-italic.ttf') format('truetype');
16
+ }
17
+
18
+ /* ── Roboto 400 Regular ────────────────────────────────────────────────────── */
19
+ @font-face {
20
+ font-family: 'Roboto';
21
+ font-style: normal;
22
+ font-weight: 400;
23
+ font-display: swap;
24
+ src: url('../fonts/roboto-regular.ttf') format('truetype');
25
+ }
26
+
27
+ @font-face {
28
+ font-family: 'Roboto';
29
+ font-style: italic;
30
+ font-weight: 400;
31
+ font-display: swap;
32
+ src: url('../fonts/roboto-italic.ttf') format('truetype');
33
+ }
34
+
35
+ /* ── Roboto 500 Medium ─────────────────────────────────────────────────────── */
36
+ @font-face {
37
+ font-family: 'Roboto';
38
+ font-style: normal;
39
+ font-weight: 500;
40
+ font-display: swap;
41
+ src: url('../fonts/roboto-medium.ttf') format('truetype');
42
+ }
43
+
44
+ @font-face {
45
+ font-family: 'Roboto';
46
+ font-style: italic;
47
+ font-weight: 500;
48
+ font-display: swap;
49
+ src: url('../fonts/roboto-medium-italic.ttf') format('truetype');
50
+ }
51
+
52
+ /* ── Roboto 600 SemiBold ───────────────────────────────────────────────────── */
53
+ @font-face {
54
+ font-family: 'Roboto';
55
+ font-style: normal;
56
+ font-weight: 600;
57
+ font-display: swap;
58
+ src: url('../fonts/roboto-semibold.ttf') format('truetype');
59
+ }
60
+
61
+ @font-face {
62
+ font-family: 'Roboto';
63
+ font-style: italic;
64
+ font-weight: 600;
65
+ font-display: swap;
66
+ src: url('../fonts/roboto-semibold-italic.ttf') format('truetype');
67
+ }
68
+
69
+ /* ── Roboto 700 Bold ───────────────────────────────────────────────────────── */
70
+ @font-face {
71
+ font-family: 'Roboto';
72
+ font-style: normal;
73
+ font-weight: 700;
74
+ font-display: swap;
75
+ src: url('../fonts/roboto-bold.ttf') format('truetype');
76
+ }
77
+
78
+ @font-face {
79
+ font-family: 'Roboto';
80
+ font-style: italic;
81
+ font-weight: 700;
82
+ font-display: swap;
83
+ src: url('../fonts/roboto-bold-italic.ttf') format('truetype');
84
+ }
@@ -0,0 +1,9 @@
1
+ @theme {
2
+ --font-roboto: 'Roboto', ui-sans-serif, system-ui, sans-serif;
3
+ --font-material-symbols-outlined: 'Material Symbols Outlined';
4
+ }
5
+
6
+ :root {
7
+ --clx-scrollbar: #cbd5e1; /* slate-300 */
8
+ --clx-scrollbar-hover: #94a3b8; /* slate-400 */
9
+ }
@@ -0,0 +1,36 @@
1
+ @import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');
2
+ @import "tailwindcss";
3
+ @import "./_fonts.css";
4
+ @import "./_theme.css";
5
+ @import "./_animate.css";
6
+
7
+ /* ── Safelist: all color shades for dynamic class binding ── */
8
+ @source inline("{bg,hover:bg,ring,hover:ring,focus:ring,hover:border,border,text}-{red,orange,amber,yellow,lime,green,emerald,teal,cyan,sky,blue,indigo,violet,purple,fuchsia,pink,rose,slate,gray,zinc,neutral,stone}-{50,100,200,300,400,500,600,700,800,900,950}{/10,/20,/25,/50,/75,}");
9
+ @source inline("{bg,hover:bg,focus:ring,border,hover:border}-{white,black,transparent}");
10
+ @source inline("text-{black,white}");
11
+
12
+ /* ── Modal backdrop ───────────────────────────────────────────────────────── */
13
+ .clx-modal-backdrop {
14
+ background-color: rgba(15, 23, 42, 0.40);
15
+ backdrop-filter: blur(4px);
16
+ -webkit-backdrop-filter: blur(4px);
17
+ }
18
+
19
+
20
+ /* ── Global scrollbar styling ─────────────────────────────────────────────── */
21
+ ::-webkit-scrollbar {
22
+ width: 0.5rem;
23
+ }
24
+
25
+ ::-webkit-scrollbar-track {
26
+ background-color: transparent;
27
+ }
28
+
29
+ ::-webkit-scrollbar-thumb {
30
+ background-color: var(--clx-scrollbar);
31
+ border-radius: 0.5rem;
32
+ }
33
+
34
+ ::-webkit-scrollbar-thumb:hover {
35
+ background-color: var(--clx-scrollbar-hover);
36
+ }