mirror of
https://git.sr.ht/~oppen/ariane
synced 2024-12-27 18:31:10 +00:00
code blocks now support day night theming
This commit is contained in:
parent
3cd926b3aa
commit
7c3bfff639
3 changed files with 9 additions and 1 deletions
|
@ -10,6 +10,6 @@
|
|||
android:paddingTop="@dimen/default_margin"
|
||||
android:paddingBottom="@dimen/default_margin"
|
||||
android:fontFamily="monospace"
|
||||
android:background="#000000"
|
||||
android:background="@color/code_background"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content" />
|
7
app/src/main/res/values-night/colors.xml
Normal file
7
app/src/main/res/values-night/colors.xml
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<color name="colorPrimary">#FFFFFF</color>
|
||||
<color name="colorPrimaryDark">#B8B8B8</color>
|
||||
<color name="colorAccent">#03DAC5</color>
|
||||
<color name="code_background">#000000</color>
|
||||
</resources>
|
|
@ -3,4 +3,5 @@
|
|||
<color name="colorPrimary">#FFFFFF</color>
|
||||
<color name="colorPrimaryDark">#B8B8B8</color>
|
||||
<color name="colorAccent">#03DAC5</color>
|
||||
<color name="code_background">#efefef</color>
|
||||
</resources>
|
Loading…
Reference in a new issue