Skip to content

Commit

Permalink
Fix/bug 58562 (#3204)
Browse files Browse the repository at this point in the history
* [se] Fix bug 58562
  • Loading branch information
GoshaZotov authored Dec 29, 2022
1 parent abd450c commit d3ab304
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions common/skin.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ var EditorSkins = {
ColorDark : "#ffffff",
ColorDarkActive : "#ffffff",
ColorDarkHighlighted : "#c1c1c1",
ColorDarkFiltering : "#6BEC9F",
ColorDarkFiltering : "#7AFFAF",

GroupDataBorder : "#000000",
EditorBorder : "#cbcbcb"
Expand Down Expand Up @@ -258,14 +258,14 @@ var EditorSkins = {
ColorHighlighted : "#d9d9d9",
ColorFiltering : "#6BEC9F",

BackgroundDark : "#111111",
BackgroundDarkActive : "#333333",
BackgroundDarkHighlighted: "#000000",
BackgroundDark : "#55B27B",
BackgroundDarkActive : "#7AFFAF",
BackgroundDarkHighlighted: "#6EE59F",

ColorDark : "#ffffff",
ColorDarkActive : "#ffffff",
ColorDarkHighlighted : "#ffffff",
ColorDarkFiltering : "#6BEC9F",
ColorDark : "#333",
ColorDarkActive : "#333",
ColorDarkHighlighted : "#333",
ColorDarkFiltering : "#ffffff",

GroupDataBorder : "#ffffff",
EditorBorder : "#2a2a2a"
Expand Down Expand Up @@ -366,9 +366,11 @@ function updateGlobalSkinColors(theme)
BackgroundDarkActive : "canvas-dark-cell-title-selected",
BackgroundDarkHighlighted : "canvas-dark-cell-title-hover",

ColorDark : "text-contrast-background",
ColorDarkActive : "text-contrast-background",
ColorDarkHighlighted : "text-contrast-background",
ColorDark : "canvas-dark-cell-title-text",
ColorDarkActive : "canvas-dark-cell-title-text",
ColorDarkHighlighted : "canvas-dark-cell-title-text",

ColorDarkFiltering : "canvas-dark-cell-title-text-filtered",

GroupDataBorder : "canvas-high-contrast",
EditorBorder : "border-toolbar"
Expand Down

0 comments on commit d3ab304

Please sign in to comment.