Skip to content

Commit

Permalink
Fix Color type color not shading properly (#2904)
Browse files Browse the repository at this point in the history
  • Loading branch information
joeyballentine committed May 22, 2024
1 parent 9be8ab4 commit 69a4b1e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/renderer/colors.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* stylelint-disable color-hex-length */
@use 'sass:color';
@use 'sass:map';

Expand Down Expand Up @@ -31,7 +32,7 @@
--type-color-number: #3182ce;
--type-color-string: #10b52c;
--type-color-bool: #319795;
--type-color-color: #fff;
--type-color-color: #ffffff;
--type-color-torch: #dd6b20;
--type-color-onnx: #63b3ed;
--type-color-ncnn: #ed64a6;
Expand Down Expand Up @@ -164,7 +165,7 @@
--controls-bg: var(--theme-300-a75);
--controls-bg-hover: var(--theme-400);

--type-color-color: #000;
--type-color-color: #000000;
}

// Default theme (copied from Chakra UI)
Expand Down

0 comments on commit 69a4b1e

Please sign in to comment.