12345678910111213141516171819202122232425262728293031 |
- # frozen_string_literal: true
- module ThemeHelper
- def theme_style_tags(theme)
- if theme == 'system'
- ''.html_safe.tap do |tags|
- tags << stylesheet_pack_tag('mastodon-light', media: 'not all and (prefers-color-scheme: dark)', crossorigin: 'anonymous')
- tags << stylesheet_pack_tag('default', media: '(prefers-color-scheme: dark)', crossorigin: 'anonymous')
- end
- else
- stylesheet_pack_tag theme, media: 'all', crossorigin: 'anonymous'
- end
- end
- def theme_color_tags(theme)
- if theme == 'system'
- ''.html_safe.tap do |tags|
- tags << tag.meta(name: 'theme-color', content: Themes::THEME_COLORS[:dark], media: '(prefers-color-scheme: dark)')
- tags << tag.meta(name: 'theme-color', content: Themes::THEME_COLORS[:light], media: '(prefers-color-scheme: light)')
- end
- else
- tag.meta name: 'theme-color', content: theme_color_for(theme)
- end
- end
- private
- def theme_color_for(theme)
- theme == 'mastodon-light' ? Themes::THEME_COLORS[:light] : Themes::THEME_COLORS[:dark]
- end
- end
|