22 lines
607 B
Go
22 lines
607 B
Go
package defaultTheme
|
|
|
|
import "image/color"
|
|
import "git.tebibyte.media/tomo/tomo"
|
|
import dataTheme "git.tebibyte.media/tomo/nasin/internal/theme"
|
|
|
|
// Theme returns Wintergreen, the default Tomo tomo. It is neutral-gray with
|
|
// green and turquoise accents.
|
|
func Theme () *dataTheme.Theme {
|
|
return &dataTheme.Theme {
|
|
Colors: map[tomo.Color] color.Color {
|
|
tomo.ColorBackground: colorBackground,
|
|
tomo.ColorForeground: colorForeground,
|
|
tomo.ColorRaised: colorCarved,
|
|
tomo.ColorSunken: colorCarved,
|
|
tomo.ColorAccent: colorFocus,
|
|
},
|
|
Rules: rules,
|
|
IconTheme: &iconTheme { },
|
|
}
|
|
}
|