20 lines
344 B
Go
20 lines
344 B
Go
package main
|
|
|
|
type Settings struct {
|
|
Background string
|
|
IconMargin string
|
|
IconPadding string
|
|
IconWidth string
|
|
IconHeight string
|
|
BorderRadius string
|
|
}
|
|
|
|
var DefaultSettings = &Settings{
|
|
Background: "#2b2a33",
|
|
IconMargin: "0.5em",
|
|
IconPadding: "1em",
|
|
IconWidth: "10em",
|
|
IconHeight: "10em",
|
|
BorderRadius: "0.15em",
|
|
}
|