File size: 2,222 Bytes
1dbc34b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/* Light Theme Overrides */

.light .scrollbar-visible::-webkit-scrollbar-track {
  background: oklch(0.95 0 0);
}

.light .scrollbar-visible::-webkit-scrollbar-thumb {
  background: oklch(0.7 0 0);
}

.light .scrollbar-visible::-webkit-scrollbar-thumb:hover {
  background: oklch(0.6 0 0);
}

.light .scrollbar-styled::-webkit-scrollbar-thumb {
  background: oklch(0.75 0 0);
}

.light .scrollbar-styled::-webkit-scrollbar-thumb:hover {
  background: oklch(0.65 0 0);
}

.light .bg-glass {
  background: oklch(1 0 0 / 0.8);
}

.light .bg-glass-80 {
  background: oklch(1 0 0 / 0.95);
}

.light .content-bg {
  background: linear-gradient(135deg, oklch(0.99 0 0), oklch(0.98 0 0), oklch(0.99 0 0));
}

.light .animated-outline-gradient {
  background: conic-gradient(from 90deg at 50% 50%, #7c3aed 0%, #2563eb 50%, #7c3aed 100%);
}

.light .animated-outline-inner {
  background: oklch(100% 0 0) !important;
  color: #7c3aed !important;
  border: 1px solid oklch(92% 0 0);
}

.light [data-slot='button'][class*='animated-outline']:hover .animated-outline-inner {
  background: oklch(97% 0.02 270) !important;
  color: #5b21b6 !important;
}

.light .slider-track {
  background: oklch(90% 0 0);
}

.light .slider-range {
  background: linear-gradient(to right, #7c3aed, #2563eb);
}

.light .slider-thumb {
  background: oklch(100% 0 0);
  border-color: oklch(80% 0 0);
}

.light .xml-highlight {
  color: oklch(0.3 0 0); /* Default text */
}

.light .xml-tag-bracket {
  color: oklch(0.45 0.15 250); /* Blue-gray for < > */
}

.light .xml-tag-name {
  color: oklch(0.45 0.22 25); /* Red/maroon for tag names */
}

.light .xml-attribute-name {
  color: oklch(0.45 0.18 280); /* Purple for attributes */
}

.light .xml-attribute-equals {
  color: oklch(0.4 0 0); /* Dark gray for = */
}

.light .xml-attribute-value {
  color: oklch(0.45 0.18 145); /* Green for string values */
}

.light .xml-comment {
  color: oklch(0.55 0.05 100); /* Muted olive for comments */
  font-style: italic;
}

.light .xml-cdata {
  color: oklch(0.5 0.1 200); /* Teal for CDATA */
}

.light .xml-doctype {
  color: oklch(0.5 0.15 280); /* Purple for DOCTYPE */
}

.light .xml-text {
  color: oklch(0.25 0 0); /* Near-black for text content */
}