@@ -9,45 +9,45 @@ import (
9
9
10
10
func main () {
11
11
fmt .Println ()
12
- for _ , theme := range []catppuccin.Theme {
12
+ for _ , flavour := range []catppuccin.Flavour {
13
13
catppuccin .Mocha (),
14
14
catppuccin .Frappe (),
15
15
catppuccin .Macchiato (),
16
16
catppuccin .Latte (),
17
17
} {
18
18
19
- fmt .Println (lipgloss .NewStyle ().Bold (true ).Render (theme .Name () + ":" ))
20
- format ("rosewater" , theme .Rosewater (), theme .Base ())
21
- format ("flamingo" , theme .Flamingo (), theme .Base ())
22
- format ("pink" , theme .Pink (), theme .Base ())
23
- format ("mauve" , theme .Mauve (), theme .Base ())
24
- format ("red" , theme .Red (), theme .Base ())
19
+ fmt .Println (lipgloss .NewStyle ().Bold (true ).Render (flavour .Name () + ":" ))
20
+ format ("rosewater" , flavour .Rosewater (), flavour .Base ())
21
+ format ("flamingo" , flavour .Flamingo (), flavour .Base ())
22
+ format ("pink" , flavour .Pink (), flavour .Base ())
23
+ format ("mauve" , flavour .Mauve (), flavour .Base ())
24
+ format ("red" , flavour .Red (), flavour .Base ())
25
25
fmt .Println ()
26
- format ("maroon" , theme .Maroon (), theme .Base ())
27
- format ("peach" , theme .Peach (), theme .Base ())
28
- format ("yellow" , theme .Yellow (), theme .Base ())
29
- format ("green" , theme .Green (), theme .Base ())
30
- format ("teal" , theme .Teal (), theme .Base ())
26
+ format ("maroon" , flavour .Maroon (), flavour .Base ())
27
+ format ("peach" , flavour .Peach (), flavour .Base ())
28
+ format ("yellow" , flavour .Yellow (), flavour .Base ())
29
+ format ("green" , flavour .Green (), flavour .Base ())
30
+ format ("teal" , flavour .Teal (), flavour .Base ())
31
31
fmt .Println ()
32
- format ("sky" , theme .Sky (), theme .Base ())
33
- format ("sapphire" , theme .Sapphire (), theme .Base ())
34
- format ("blue" , theme .Blue (), theme .Base ())
35
- format ("lavender" , theme .Lavender (), theme .Base ())
36
- format ("text" , theme .Text (), theme .Base ())
32
+ format ("sky" , flavour .Sky (), flavour .Base ())
33
+ format ("sapphire" , flavour .Sapphire (), flavour .Base ())
34
+ format ("blue" , flavour .Blue (), flavour .Base ())
35
+ format ("lavender" , flavour .Lavender (), flavour .Base ())
36
+ format ("text" , flavour .Text (), flavour .Base ())
37
37
fmt .Println ()
38
- format ("subtext1" , theme .Subtext1 (), theme .Base ())
39
- format ("subtext0" , theme .Subtext0 (), theme .Base ())
40
- format ("overlay2" , theme .Overlay2 (), theme .Base ())
41
- format ("overlay1" , theme .Overlay1 (), theme .Base ())
42
- format ("overlay0" , theme .Overlay0 (), theme .Text ())
38
+ format ("subtext1" , flavour .Subtext1 (), flavour .Base ())
39
+ format ("subtext0" , flavour .Subtext0 (), flavour .Base ())
40
+ format ("overlay2" , flavour .Overlay2 (), flavour .Base ())
41
+ format ("overlay1" , flavour .Overlay1 (), flavour .Base ())
42
+ format ("overlay0" , flavour .Overlay0 (), flavour .Text ())
43
43
fmt .Println ()
44
- format ("surface2" , theme .Surface2 (), theme .Text ())
45
- format ("surface1" , theme .Surface1 (), theme .Text ())
46
- format ("surface0" , theme .Surface0 (), theme .Text ())
47
- format ("crust" , theme .Crust (), theme .Text ())
48
- format ("mantle" , theme .Mantle (), theme .Text ())
44
+ format ("surface2" , flavour .Surface2 (), flavour .Text ())
45
+ format ("surface1" , flavour .Surface1 (), flavour .Text ())
46
+ format ("surface0" , flavour .Surface0 (), flavour .Text ())
47
+ format ("crust" , flavour .Crust (), flavour .Text ())
48
+ format ("mantle" , flavour .Mantle (), flavour .Text ())
49
49
fmt .Println ()
50
- format ("base" , theme .Base (), theme .Text ())
50
+ format ("base" , flavour .Base (), flavour .Text ())
51
51
fmt .Println ()
52
52
fmt .Println ()
53
53
}
0 commit comments