Skip to content

Commit

Permalink
Fix announcements
Browse files Browse the repository at this point in the history
  • Loading branch information
jorg-vr committed Jun 21, 2023
1 parent 6661fbf commit 4ceb5c3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,15 @@
--bs-primary: var(--d-primary);
--bs-primary-rgb: var(--d-primary-rgb);
--bs-secondary: var(--d-secondary);
--bs-secondary-rgb: var(--d-secondary-rgb);
--bs-success: var(--d-success);
--bs-success-rgb: var(--d-success-rgb);
--bs-info: var(--d-info);
--bs-info-rgb: var(--d-info-rgb);
--bs-warning: var(--d-warning);
--bs-warning-rgb: var(--d-warning-rgb);
--bs-danger: var(--d-danger);
--bs-danger-rgb: var(--d-danger-rgb);
--bs-light: $neutral-90;
--bs-dark: $neutral-25;

Expand Down
3 changes: 3 additions & 0 deletions app/assets/stylesheets/theme/m3-theme-dark.css.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
--d-secondary-container: #{$secondary-30};
--d-on-secondary: #{$secondary-20};
--d-on-secondary-container: #{$secondary-90};
--d-secondary-rgb: #{color.red($secondary-80)}, #{color.green($secondary-80)}, #{color.blue($secondary-80)};

// tertiary
--d-tertiary: #{$tertiary-80};
Expand Down Expand Up @@ -45,6 +46,7 @@
--d-info-container: #{$info-30};
--d-on-info: #{$info-20};
--d-on-info-container: #{$info-90};
--d-info-rgb: #{color.red($info-80)}, #{color.green($info-80)}, #{color.blue($info-80)};

// success changed from 80 to 70
--d-success: #{$success-70};
Expand All @@ -65,6 +67,7 @@
--d-warning-container: #{$warning-30};
--d-on-warning: #{$warning-20};
--d-on-warning-container: #{$warning-90};
--d-warning-rgb: #{color.red($warning-80)}, #{color.green($warning-80)}, #{color.blue($warning-80)};

// red
--d-red: #{$red-80};
Expand Down
3 changes: 3 additions & 0 deletions app/assets/stylesheets/theme/m3-theme-light.css.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
--d-secondary-container: #{$secondary-90};
--d-on-secondary: #{$secondary-100};
--d-on-secondary-container: #{$secondary-10};
--d-secondary-rgb: #{color.red($secondary-40)}, #{color.green($secondary-40)}, #{color.blue($secondary-40)};

// tertiary
--d-tertiary: #{$tertiary-40};
Expand Down Expand Up @@ -47,6 +48,7 @@
--d-info-container: #{$info-90};
--d-on-info: #{$info-100};
--d-on-info-container: #{$info-10};
--d-info-rgb: #{color.red($info-40)}, #{color.green($info-40)}, #{color.blue($info-40)};

// changed from 40 to 60
--d-success: #{$success-60};
Expand All @@ -67,6 +69,7 @@
--d-warning-container: #{$warning-90};
--d-on-warning: #{$warning-100};
--d-on-warning-container: #{$warning-10};
--d-warning-rgb: #{color.red($warning-70)}, #{color.green($warning-70)}, #{color.blue($warning-70)};

// red
--d-red: #{$red-40};
Expand Down

0 comments on commit 4ceb5c3

Please sign in to comment.