Skip to content

Commit 21aeb03

Browse files
authoredFeb 13, 2024
Create VisualStudioDark.css
1 parent 1c6520d commit 21aeb03

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed
 

‎Themes/VisualStudioDark.css

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
self {
2+
background-color: #1e1e1e; /* Main background color, very dark gray */
3+
}
4+
::-webkit-scrollbar-thumb {
5+
background-color: #3a3d41; /* Scrollbar color, dark gray */
6+
}
7+
.DataValue::placeholder {
8+
color: #d4d4d4; /* Placeholder text color, light gray for contrast */
9+
}
10+
.DataModel {
11+
background-color: #252526; /* Alternate background color, slightly lighter dark gray */
12+
}
13+
.DataGridCollection, .DataTable, .DataSection {
14+
border-color: #3f3f46; /* Border color, dark gray to subtly define edges */
15+
background-color: #252526; /* Alternate background color, for sections and tables */
16+
}
17+
.DataSection:hover, .DataTable:hover, .DataGridCollection:hover, .DataValue:hover, input:hover {
18+
border-color: #007acc; /* Highlight color, bright blue for hover states */
19+
}
20+
.DataSection:focus-within, .DataTable:focus-within, .DataGridCollection:focus-within, .DataValue:focus-within {
21+
border-color: #569cd6; /* Focus color, softer blue to indicate focus without overwhelming */
22+
}
23+
.caption, label {
24+
color: #dcdcdc; /* Foreground text color, soft white for readability */
25+
}
26+
.invalid, .dg-error-list {
27+
background-color: #d16969; /* Error color, soft red for visibility without harshness */
28+
}
29+
.SoftError > .invalid {
30+
background-color: #ce9178; /* Warning color, a muted orange for differentiation */
31+
}
32+
.confirmed {
33+
background-color: #608b4e; /* Success color, a muted green for positive feedback */
34+
}
35+
button[id="delete-section"] {
36+
color: #569cd6; /* Button and link color, matching the focus state for consistency */
37+
}

0 commit comments

Comments
 (0)
Please sign in to comment.