Sha256: 61d0ecf9923929f636326233a2c33e0112e5a2af10d3a85a73e2c64a07a7ea98

Contents?: true

Size: 720 Bytes

Versions: 3

Compression:

Stored size: 720 Bytes

Contents

require "bullet_train/themes/light/version"
require "bullet_train/themes/light/engine"
require "bullet_train/themes/tailwind_css"
require "bullet_train/themes/light/file_replacer"
require "bullet_train/themes/light/custom_theme_file_replacer"

module BulletTrain
  module Themes
    module Light
      # TODO Not sure this is the right place for this in the long-term.
      mattr_accessor :color, default: :blue
      mattr_accessor :secondary_color, default: nil
      mattr_accessor :logo_color_shift, default: false
      mattr_accessor :original_devise_path

      class Theme < BulletTrain::Themes::TailwindCss::Theme
        def directory_order
          ["light"] + super
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
bullet_train-themes-light-1.2.1 lib/bullet_train/themes/light.rb
bullet_train-themes-light-1.2.0 lib/bullet_train/themes/light.rb
bullet_train-themes-light-1.0.52 lib/bullet_train/themes/light.rb