Skip to content

Commit 796c9ec

Browse files
committed
chore: change table selected item colors in light and dark theme
1 parent cc5726f commit 796c9ec

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/styles/brackets.less

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1049,11 +1049,11 @@ a, img {
10491049
}
10501050

10511051
tr.selected td {
1052-
background-color: @bc-panel-bg-selected;
1052+
background-color: @bc-panel-bg-selected-table;
10531053
color: @bc-text-thin;
10541054

10551055
.dark & {
1056-
background-color: @dark-bc-panel-bg-selected;
1056+
background-color: @dark-bc-panel-bg-selected-table;
10571057
color: @dark-bc-text-thin;
10581058
}
10591059
}

src/styles/brackets_core_ui_variables.less

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@
108108
@bc-panel-bg-hover: rgba(255, 255, 255, 0.6);
109109
@bc-panel-bg-hover-alt: rgba(0, 0, 0, 0.04);
110110
@bc-panel-bg-selected: #d0d5d5;
111+
@bc-panel-bg-selected-table: #b8c9d1;
111112
@bc-panel-bg-text-highlight: #fff;
112113
@bc-panel-border: rgba(0, 0, 0, 0.09);
113114
@bc-panel-separator: #c3c6c5;
@@ -218,6 +219,7 @@
218219
@dark-bc-panel-bg-hover: rgba(255, 255, 255, 0.12);
219220
@dark-bc-panel-bg-hover-alt: rgba(0, 0, 0, 0.1);
220221
@dark-bc-panel-bg-selected: #3d3e40;
222+
@dark-bc-panel-bg-selected-table: #2e3e44;
221223
@dark-bc-panel-bg-text-highlight: #000;
222224
@dark-bc-panel-border: #000;
223225
@dark-bc-panel-separator: #343434;

0 commit comments

Comments
 (0)