Skip to content
This repository has been archived by the owner on Mar 26, 2023. It is now read-only.

Commit

Permalink
Opacity primary colors
Browse files Browse the repository at this point in the history
  • Loading branch information
Dyakov Roman authored Oct 14, 2022
1 parent f3ecdad commit 55afc50
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions static/default.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
:root {
--bs-primary: #00004b;
--bs-on-primary: #ffffff;
--bs-secondary: #ff8b00;
--bs-primary: rgba(0, 0, 75, 1);
--bs-primary-90: rgba(0, 0, 75, 0.9);
--bs-primary-80: rgba(0, 0, 75, 0.8);
--bs-primary-70: rgba(0, 0, 75, 0.7);
--bs-primary-60: rgba(0, 0, 75, 0.6);
--bs-primary-50: rgba(0, 0, 75, 0.5);
--bs-primary-40: rgba(0, 0, 75, 0.4);
--bs-primary-30: rgba(0, 0, 75, 0.3);
--bs-primary-20: rgba(0, 0, 75, 0.2);
--bs-primary-10: rgba(0, 0, 75, 0.1);
--bs-on-primary: rgba(255, 255, 255, 1);
--bs-secondary: rgba(255, 139, 0, 1);
--bs-font-sans-serif: "Roboto", sans-serif;
}

Expand Down Expand Up @@ -41,4 +50,4 @@ html {
100% {
transform: rotate(360deg);
}
}
}

0 comments on commit 55afc50

Please sign in to comment.