2017-09-19 16:36:23 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'singleton'
|
|
|
|
require 'yaml'
|
|
|
|
|
|
|
|
class Themes
|
|
|
|
include Singleton
|
|
|
|
|
2024-04-05 11:52:43 +02:00
|
|
|
THEME_COLORS = {
|
2024-08-20 17:56:44 +02:00
|
|
|
dark: '#181820',
|
2024-06-27 18:46:20 +02:00
|
|
|
light: '#ffffff',
|
2024-04-05 11:52:43 +02:00
|
|
|
}.freeze
|
2024-03-29 14:32:07 +01:00
|
|
|
|
2017-09-19 16:36:23 +02:00
|
|
|
def initialize
|
|
|
|
@conf = YAML.load_file(Rails.root.join('config', 'themes.yml'))
|
|
|
|
end
|
|
|
|
|
|
|
|
def names
|
2024-03-26 10:25:49 +01:00
|
|
|
['system'] + @conf.keys
|
2017-09-19 16:36:23 +02:00
|
|
|
end
|
|
|
|
end
|