Add option for user CSS

This commit is contained in:
r 2021-04-03 09:22:43 +00:00
parent a82745175e
commit 76c5baef6a
6 changed files with 18 additions and 0 deletions

View file

@ -11,6 +11,7 @@ type Settings struct {
FluorideMode bool `json:"fluoride_mode"`
DarkMode bool `json:"dark_mode"`
AntiDopamineMode bool `json:"anti_dopamine_mode"`
CSS string `json:"css"`
}
func NewSettings() *Settings {
@ -25,5 +26,6 @@ func NewSettings() *Settings {
FluorideMode: false,
DarkMode: false,
AntiDopamineMode: false,
CSS: "",
}
}