Skip to content

Commit

Permalink
client: review dark theme colors
Browse files Browse the repository at this point in the history
  • Loading branch information
Mizzick committed Jan 19, 2023
1 parent c456cdc commit 9a3ba15
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/components/App/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@
--ctrl-dropdown-bgcolor-focus: #000;
--ctrl-dropdown-color-focus: #fff;
--btn-success-bgcolor: #67b279;
--form-disabled-bgcolor: #a5a5a5;
--form-disabled-color: #1c1c1c;
--form-disabled-bgcolor: #3d3d3d;
--form-disabled-color: #a5a5a5;
--logs__text-color: #f3f3f3;
--rt-nodata-bgcolor: #1c1c1c;
--rt-nodata-color: #fff;
Expand Down
5 changes: 5 additions & 0 deletions client/src/components/ui/ReactTable.css
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@
background-color: var(--rt-nodata-bgcolor);
}

[data-theme=dark] .ReactTable .-pagination .-btn {
color: var(--scolor);
background-color: var(--ctrl-bgcolor);
}

.rt-tr-group.logs__row--red {
background-color: rgba(223, 56, 18, 0.05);
}
Expand Down
5 changes: 5 additions & 0 deletions client/src/components/ui/Tooltip.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
}

[data-theme=dark] .tooltip-container {
background-color: var(--ctrl-select-bgcolor);
color: var(--mcolor);
}

.tooltip-custom--narrow {
max-width: 14rem;
}
Expand Down

0 comments on commit 9a3ba15

Please sign in to comment.