Color simplification
This commit is contained in:
@ -52,9 +52,7 @@ val light_gray_dark = Color(0xFF424242)
|
||||
val light_gray_light = Color(0xffe0e0e0)
|
||||
val light_accent = Color(0xFFF77445)
|
||||
val light_baresip = Color(0xff0ca1fd)
|
||||
val light_white = Color(0xffffffff)
|
||||
val light_black = Color(0xFF000000)
|
||||
val light_strong = light_black
|
||||
val light_strong = Color(0xFF000000)
|
||||
val light_green = Color(0xff01df01)
|
||||
val light_red = Color(0xffff0000)
|
||||
val light_traffic_green = Color(0xFF4CAF50)
|
||||
@ -65,9 +63,8 @@ val light_dark = Color(0xFF383838)
|
||||
val light_spinner_text = light_dark
|
||||
val light_spinner_dropdown = light_gray_light
|
||||
val light_spinner_divider = light_gray
|
||||
val light_item_text = light_black
|
||||
val light_alert_text = light_black
|
||||
val light_codec = light_black
|
||||
val light_item_text = light_dark
|
||||
val light_alert_text = light_strong
|
||||
val light_background = light_light
|
||||
val light_textfield_background = light_gray_light
|
||||
val light_card_background = light_gray_light
|
||||
@ -86,9 +83,8 @@ val dark_gray_dark = Color(0xFF424242)
|
||||
val dark_gray_light = Color(0xffe0e0e0)
|
||||
val dark_accent = Color(0xFFF77445)
|
||||
val dark_baresip = Color(0xff0ca1fd)
|
||||
val dark_white = Color(0xffffffff)
|
||||
val dark_black = Color(0xFF000000)
|
||||
val dark_strong = dark_white
|
||||
val dark_strong = Color(0xffffffff)
|
||||
val dark_green = Color(0xff01df01)
|
||||
val dark_red = Color(0xffdf0101)
|
||||
val dark_traffic_green = Color(0xFF2E7D32)
|
||||
@ -101,7 +97,6 @@ val dark_spinner_dropdown = dark_gray
|
||||
val dark_spinner_divider = dark_gray_dark
|
||||
val dark_item_text = dark_gray_light
|
||||
val dark_alert_text = dark_gray_light
|
||||
val dark_codec = dark_secondary_dark
|
||||
val dark_background = dark_dark
|
||||
val dark_textfield_background = dark_gray
|
||||
val dark_card_background = dark_gray_dark
|
||||
@ -121,8 +116,6 @@ val LightCustomColors = CustomColors(
|
||||
grayLight = light_gray_light,
|
||||
accent = light_accent,
|
||||
baresip = light_baresip,
|
||||
white = light_white,
|
||||
black = light_black,
|
||||
strong = light_strong,
|
||||
green = light_green,
|
||||
red = light_red,
|
||||
@ -136,7 +129,6 @@ val LightCustomColors = CustomColors(
|
||||
spinnerDivider = light_spinner_divider,
|
||||
itemText = light_item_text,
|
||||
alertText = light_alert_text,
|
||||
codec = light_codec,
|
||||
background = light_background,
|
||||
cardBackground = light_card_background,
|
||||
textFieldBackground = light_textfield_background,
|
||||
@ -157,7 +149,6 @@ val DarkCustomColors = CustomColors(
|
||||
grayLight = dark_gray_light,
|
||||
accent = dark_accent,
|
||||
baresip = dark_baresip,
|
||||
white = dark_white,
|
||||
black = dark_black,
|
||||
strong = dark_strong,
|
||||
green = dark_green,
|
||||
@ -172,7 +163,6 @@ val DarkCustomColors = CustomColors(
|
||||
spinnerDivider = dark_spinner_divider,
|
||||
itemText = dark_item_text,
|
||||
alertText = dark_alert_text,
|
||||
codec = dark_codec,
|
||||
background = dark_background,
|
||||
cardBackground = dark_card_background,
|
||||
textFieldBackground = dark_textfield_background,
|
||||
|
||||
Reference in New Issue
Block a user