You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
581 B
24 lines
581 B
3 years ago
|
package main
|
||
|
|
||
|
import (
|
||
|
"barista.run/colors"
|
||
|
"github.com/lucasb-eyer/go-colorful"
|
||
|
)
|
||
|
|
||
|
func configureColors() {
|
||
|
colors.LoadBarConfig()
|
||
|
bg := colors.Scheme("background")
|
||
|
fg := colors.Scheme("statusline")
|
||
|
if fg != nil && bg != nil {
|
||
|
iconColor := fg.Colorful().BlendHcl(bg.Colorful(), 0.5).Clamped()
|
||
|
colors.Set("dim-icon", iconColor)
|
||
|
_, _, v := fg.Colorful().Hsv()
|
||
|
if v < 0.3 {
|
||
|
v = 0.3
|
||
|
}
|
||
|
colors.Set("bad", colorful.Hcl(40, 1.0, v).Clamped())
|
||
|
colors.Set("degraded", colorful.Hcl(90, 1.0, v).Clamped())
|
||
|
colors.Set("good", colorful.Hcl(120, 1.0, v).Clamped())
|
||
|
}
|
||
|
}
|