mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-31 09:59:07 +01:00
Add RGB variables for some theme colors
This commit is contained in:
parent
a3b902b747
commit
430cfa1a38
1 changed files with 12 additions and 0 deletions
|
@ -1,3 +1,5 @@
|
||||||
|
@use "sass:color";
|
||||||
|
|
||||||
// Font settings
|
// Font settings
|
||||||
$lexend-font-path: ".";
|
$lexend-font-path: ".";
|
||||||
$lexend-weights: 500, 600;
|
$lexend-weights: 500, 600;
|
||||||
|
@ -82,6 +84,16 @@ $spacers: map-merge($rs-spacers, $spacers);
|
||||||
--raised-bg: #ffffff;
|
--raised-bg: #ffffff;
|
||||||
--raised-accent: #f7f7f7;
|
--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
|
NOTE for all *-text variables
|
||||||
----------------------------------------------
|
----------------------------------------------
|
||||||
|
|
Loading…
Reference in a new issue