Add new accent Deep blue

This commit is contained in:
Rahul Kumar Patel
2021-02-16 08:55:43 +05:30
parent a3ea1856c5
commit a17d312dc7
6 changed files with 16 additions and 2 deletions

View File

@@ -41,10 +41,14 @@
}, },
{ {
"id": "11", "id": "11",
"accent": "#61A7E0" "accent": "#59A8E2"
}, },
{ {
"id": "12", "id": "12",
"accent": "#7289da" "accent": "#7289da"
},
{
"id": "13",
"accent": "#0078D7"
} }
] ]

View File

@@ -183,6 +183,7 @@ object CommonUtil {
10 -> R.style.Accent10 10 -> R.style.Accent10
11 -> R.style.Accent11 11 -> R.style.Accent11
12 -> R.style.Accent12 12 -> R.style.Accent12
13 -> R.style.Accent13
else -> R.style.Accent01 else -> R.style.Accent01
} }
} }

View File

@@ -88,6 +88,7 @@
<item>@string/ui_accent_10</item> <item>@string/ui_accent_10</item>
<item>@string/ui_accent_11</item> <item>@string/ui_accent_11</item>
<item>@string/ui_accent_12</item> <item>@string/ui_accent_12</item>
<item>@string/ui_accent_13</item>
</string-array> </string-array>
<string-array name="pref_accent_values"> <string-array name="pref_accent_values">
@@ -103,6 +104,7 @@
<item>10</item> <item>10</item>
<item>11</item> <item>11</item>
<item>12</item> <item>12</item>
<item>13</item>
</string-array> </string-array>
<string-array name="pref_installation_method"> <string-array name="pref_installation_method">

View File

@@ -83,6 +83,7 @@
<color name="colorAccent08">#ee70a6</color> <color name="colorAccent08">#ee70a6</color>
<color name="colorAccent09">#b5c327</color> <color name="colorAccent09">#b5c327</color>
<color name="colorAccent10">#f38654</color> <color name="colorAccent10">#f38654</color>
<color name="colorAccent11">#61A7E0</color> <color name="colorAccent11">#59A8E2</color>
<color name="colorAccent12">#7289da</color> <color name="colorAccent12">#7289da</color>
<color name="colorAccent13">#0078D7</color>
</resources> </resources>

View File

@@ -40,4 +40,5 @@
<string name="ui_accent_10">Orange</string> <string name="ui_accent_10">Orange</string>
<string name="ui_accent_11">Light blue</string> <string name="ui_accent_11">Light blue</string>
<string name="ui_accent_12">Disskord blue</string> <string name="ui_accent_12">Disskord blue</string>
<string name="ui_accent_13">Deep blue</string>
</resources> </resources>

View File

@@ -78,4 +78,9 @@
<item name="colorAccent">@color/colorAccent12</item> <item name="colorAccent">@color/colorAccent12</item>
<item name="colorPrimary">@color/colorAccent12</item> <item name="colorPrimary">@color/colorAccent12</item>
</style> </style>
<style name="Accent13">
<item name="colorAccent">@color/colorAccent13</item>
<item name="colorPrimary">@color/colorAccent13</item>
</style>
</resources> </resources>