theme.go 348 B

12345678910111213
  1. // Copyright 2017 Frédéric Guillot. All rights reserved.
  2. // Use of this source code is governed by the Apache 2.0
  3. // license that can be found in the LICENSE file.
  4. package model
  5. // GetThemes returns the list of available themes.
  6. func GetThemes() map[string]string {
  7. return map[string]string{
  8. "default": "Default",
  9. "black": "Black",
  10. }
  11. }