b1db748351
also removed hour count from recording widgets
15 lines
264 B
SCSS
15 lines
264 B
SCSS
@use "sass:color";
|
|
|
|
|
|
/**
|
|
* GTK3 only supports sRGB color space, unfortunately
|
|
*/
|
|
@function toRGB($color) {
|
|
@return rgba(
|
|
color.channel($color, "red"),
|
|
color.channel($color, "green"),
|
|
color.channel($color, "blue"),
|
|
color.alpha($color)
|
|
);
|
|
}
|