Path: blob/master/app/src/main/res/values-night/themes.xml
1637 views
<?xml version="1.0" encoding="utf-8"?>1<resources>2<!--3https://material.io/develop/android/theming/dark4-->56<!-- TermuxActivity DayNight NoActionBar theme. -->7<!-- See https://developer.android.com/training/material/theme.html for how to customize the Material theme. -->8<!-- NOTE: Cannot use "Light." since it hides the terminal scrollbar on the default black background. -->9<style name="Theme.TermuxActivity.DayNight.NoActionBar" parent="Theme.TermuxApp.DayNight.NoActionBar">10<!-- Primary brand color. -->11<item name="colorPrimary">@color/black</item>12<item name="colorPrimaryVariant">@color/black</item>1314<item name="android:windowBackground">@color/black</item>1516<!-- Avoid action mode toolbar pushing down terminal content when17selecting text on pre-6.0 (non-floating toolbar). -->18<item name="android:windowActionModeOverlay">true</item>1920<item name="android:windowTranslucentStatus">true</item>21<item name="android:windowTranslucentNavigation">true</item>2223<!-- https://developer.android.com/training/tv/start/start.html#transition-color -->24<item name="android:windowAllowReturnTransitionOverlap">true</item>25<item name="android:windowAllowEnterTransitionOverlap">true</item>2627<!-- Left drawer. -->28<item name="buttonBarButtonStyle">@style/TermuxActivity.Drawer.ButtonBarStyle.Dark</item>29<item name="termuxActivityDrawerBackground">@color/black</item>30<item name="termuxActivityDrawerImageTint">@color/white</item>3132<!-- Extra keys colors. -->33<item name="extraKeysButtonTextColor">@color/white</item>34<item name="extraKeysButtonActiveTextColor">@color/red_400</item>35<item name="extraKeysButtonBackgroundColor">@color/black</item>36<item name="extraKeysButtonActiveBackgroundColor">@color/grey_500</item>37</style>3839</resources>404142