mirror of
https://github.com/Coffeedon/Cofffee-Assets.git
synced 2024-11-25 15:41:03 +00:00
8 lines
186 B
SCSS
8 lines
186 B
SCSS
|
@charset "UTF-8";
|
||
|
@use "sass:string";
|
||
|
|
||
|
|
||
|
// convert hex color code to svg styled ascii color code
|
||
|
@function svg-color ($color) {
|
||
|
@return '%23' + string.slice(inspect($color), 2, 7);
|
||
|
}
|