Module: TokyoMetro::Modules::Static::GetBackgroundColorInfo::Base

Included in:
Static::TrainType::Custom::Main::Info
Defined in:
lib/tokyo_metro/modules/static/get_background_color_info/base.rb

Overview

背景色の基本的な情報を取得するメソッドを提供するモジュール

Instance Method Summary collapse

Instance Method Details

#bg_web_colorString

背景の WebColor を返すメソッド

Returns:

  • (String)


6
7
8
# File 'lib/tokyo_metro/modules/static/get_background_color_info/base.rb', line 6

def bg_web_color
  @bgcolor.web_color
end

#to_s_rgb_bg_color_in_parenthesesString

背景の Red, Green, Blue の各成分の情報を括弧で囲んだ文字列にして返すメソッド

Returns:

  • (String)


12
13
14
# File 'lib/tokyo_metro/modules/static/get_background_color_info/base.rb', line 12

def to_s_rgb_bg_color_in_parentheses
  @bgcolor.to_s_rgb_color_in_parentheses
end