1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-09-30 04:17:55 +02:00

black theme for ios

This commit is contained in:
Kyle Spearrin 2019-06-24 14:49:47 -04:00
parent 2b670a5ae1
commit d9c947ccd0
6 changed files with 9 additions and 8 deletions

View File

@ -62,12 +62,9 @@ namespace Bit.App.Pages
new KeyValuePair<string, string>(null, AppResources.Default),
new KeyValuePair<string, string>("light", AppResources.Light),
new KeyValuePair<string, string>("dark", AppResources.Dark),
new KeyValuePair<string, string>("black", AppResources.Black),
new KeyValuePair<string, string>("nord", "Nord"),
};
if(Device.RuntimePlatform == Device.Android)
{
ThemeOptions.Add(new KeyValuePair<string, string>("black", AppResources.Black));
}
ThemeOptions.Add(new KeyValuePair<string, string>("nord", "Nord"));
UriMatchOptions = new List<KeyValuePair<UriMatchType?, string>>
{
new KeyValuePair<UriMatchType?, string>(UriMatchType.Domain, AppResources.BaseDomain),

View File

@ -27,6 +27,7 @@
<Color x:Key="ListItemBorderColor">#191919</Color>
<Color x:Key="ListSectionBorderColor">#282828</Color>
<Color x:Key="ListSectionBorderBottomColor">#000000</Color>
<Color x:Key="ListHeaderTextColor">#52bdfb</Color>
<Color x:Key="ListHeaderBackgroundColor">#000000</Color>
@ -37,7 +38,7 @@
<Color x:Key="SwitchOnColor">#52bdfb</Color>
<Color x:Key="ButtonTextColor">#000000</Color>
<Color x:Key="ButtonTextColor">#ffffff</Color>
<Color x:Key="ButtonBackgroundColor">#5A595B</Color>
<Color x:Key="FabColor">#52bdfb</Color>

View File

@ -27,6 +27,7 @@
<Color x:Key="ListItemBorderColor">#262626</Color>
<Color x:Key="ListSectionBorderColor">#191919</Color>
<Color x:Key="ListSectionBorderBottomColor">#191919</Color>
<Color x:Key="ListHeaderTextColor">#52bdfb</Color>
<Color x:Key="ListHeaderBackgroundColor">#222222</Color>

View File

@ -27,6 +27,7 @@
<Color x:Key="ListItemBorderColor">#f0f0f0</Color>
<Color x:Key="ListSectionBorderColor">#dddddd</Color>
<Color x:Key="ListSectionBorderBottomColor">#dddddd</Color>
<Color x:Key="ListHeaderTextColor">#3c8dbc</Color>
<Color x:Key="ListHeaderBackgroundColor">#efeff4</Color>

View File

@ -27,8 +27,9 @@
<Color x:Key="ListItemBorderColor">#2e3440</Color>
<Color x:Key="ListSectionBorderColor">#2e3440</Color>
<Color x:Key="ListSectionBorderBottomColor">#2e3440</Color>
<Color x:Key="ListHeaderTextColor">#81a1c1</Color>
<Color x:Key="ListHeaderBackgroundColor">#3b4252</Color>
<Color x:Key="ListHeaderBackgroundColor">#2e3440</Color>
<Color x:Key="SliderThumbColor">#e5e9f0</Color>
<Color x:Key="SliderThumbBorderColor">#2e3440</Color>

View File

@ -123,7 +123,7 @@
<Style TargetType="BoxView"
Class="list-section-separator-bottom-platform">
<Setter Property="Color"
Value="{StaticResource ListSectionBorderColor}" />
Value="{StaticResource ListSectionBorderBottomColor}" />
<Setter Property="Margin"
Value="0, 0, 0, -1" />
</Style>