Add RGB variables for some theme colors

This commit is contained in:
Andreas Nedbal 2023-01-12 18:30:29 +01:00 committed by Andreas Nedbal
parent a3b902b747
commit 430cfa1a38
1 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,5 @@
@use "sass:color";
// Font settings
$lexend-font-path: ".";
$lexend-weights: 500, 600;
@ -82,6 +84,16 @@ $spacers: map-merge($rs-spacers, $spacers);
--raised-bg: #ffffff;
--raised-accent: #f7f7f7;
/**
*-rgb values are some of the background colors
available as triplets because they are required
for background opacity styles
*/
--primary-rgb: #{color.red($primary)}, #{color.green($primary)}, #{color.blue($primary)};
--raised-bg-rgb: #{color.red(#ffffff)}, #{color.green(#ffffff)}, #{color.blue(#ffffff)};
--raised-accent-rgb: #{color.red(#f7f7f7)}, #{color.green(#f7f7f7)}, #{color.blue(#f7f7f7)};
/**
NOTE for all *-text variables
----------------------------------------------