Skip to content

Commit

Permalink
Merge pull request #12 from ejunga/light-colors
Browse files Browse the repository at this point in the history
Implement informational colors in light mode
  • Loading branch information
mart2070 authored May 30, 2025
2 parents 5ba207a + 311a9f9 commit 50edff1
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions tdx-enhanced.js
Original file line number Diff line number Diff line change
Expand Up @@ -1659,6 +1659,11 @@
--dark-col-blue: #32577a;
--dark-col-yellow: #654a24;
--light-col-green: #e3fcea;
--light-col-red: #ff6190;
--light-col-blue: #e1f5fc;
--light-col-yellow: #ffefd8;
/* Original TDX blue */
--dark-blue-accent: #4c778d;
--light-blue-accent: #4b3bb9;
Expand Down Expand Up @@ -1873,10 +1878,10 @@
--col-500: var(--light-col-500);
--col-600: var(--light-col-600);
--col-700: var(--light-col-700);
--col-red: var(--dark-col-red);
--col-green: var(--null);
--col-blue: var(--null);
--col-yellow: var(--null);
--col-red: var(--light-col-red);
--col-green: var(--light-col-green);
--col-blue: var(--light-col-blue);
--col-yellow: var(--light-col-yellow);
--col-link: var(--light-col-link);
--txt-0: var(--light-txt-0);
--txt-1: var(--light-txt-1);
Expand Down Expand Up @@ -3256,7 +3261,7 @@ nav#divTabHeader,
}
.alert-info, div.alert-info {
color: var(--txt-5) !important;
color: var(--txt-1) !important;
background-color: var(--col-blue) !important;
}
Expand Down

0 comments on commit 50edff1

Please sign in to comment.