dynamik dark mod

This commit is contained in:
Mostafa Moradi 2022-03-07 18:05:29 +03:00
parent 1b30b83b26
commit a0405b8438
2 changed files with 6 additions and 3 deletions

View File

@ -225,7 +225,7 @@ return [
'dark_input_background_color' => [ 'dark_input_background_color' => [
'type' => 'anomaly.field_type.colorpicker', 'type' => 'anomaly.field_type.colorpicker',
'config' => [ 'config' => [
'default_value' => '#1d365e' 'default_value' => '#2f4770'
] ]
], ],
'dark_input_placeholder_color' => [ 'dark_input_placeholder_color' => [
@ -237,13 +237,13 @@ return [
'dark_input_focused_background_color' => [ 'dark_input_focused_background_color' => [
'type' => 'anomaly.field_type.colorpicker', 'type' => 'anomaly.field_type.colorpicker',
'config' => [ 'config' => [
'default_value' => '#222f5b' 'default_value' => '#2a3c6b'
] ]
], ],
'dark_input_focused_border_color' => [ 'dark_input_focused_border_color' => [
'type' => 'anomaly.field_type.colorpicker', 'type' => 'anomaly.field_type.colorpicker',
'config' => [ 'config' => [
'default_value' => '#1a285b' 'default_value' => '#1e3060'
] ]
], ],
]; ];

View File

@ -362,3 +362,6 @@ color: {{ setting_value('visiosoft.theme.defaultadmin::dark_text_color') }} !imp
.choices__list--dropdown .choices__item:hover, .choices__list--dropdown .choices__item.is-highlighted { .choices__list--dropdown .choices__item:hover, .choices__list--dropdown .choices__item.is-highlighted {
background-color: {{ setting_value('visiosoft.theme.defaultadmin::dark_secondary_color') }} !important; background-color: {{ setting_value('visiosoft.theme.defaultadmin::dark_secondary_color') }} !important;
} }
.select2-container--default .select2-selection--single {
border-color: {{ setting_value('visiosoft.theme.defaultadmin::dark_secondary_color') }} !important;
}