├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── github_action_build.yml │ ├── github_release_build.yml │ └── nerd-font-setup.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── app ├── build.gradle ├── src │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ ├── colors │ │ │ ├── argonaut.properties │ │ │ ├── base16-3024-dark.properties │ │ │ ├── base16-3024-light.properties │ │ │ ├── base16-apathy-dark.properties │ │ │ ├── base16-apathy-light.properties │ │ │ ├── base16-ashes-dark.properties │ │ │ ├── base16-ashes-light.properties │ │ │ ├── base16-atelierdune-dark.properties │ │ │ ├── base16-atelierdune-light.properties │ │ │ ├── base16-atelierforest-dark.properties │ │ │ ├── base16-atelierforest-light.properties │ │ │ ├── base16-atelierheath-dark.properties │ │ │ ├── base16-atelierheath-light.properties │ │ │ ├── base16-atelierlakeside-dark.properties │ │ │ ├── base16-atelierlakeside-light.properties │ │ │ ├── base16-atelierseaside-dark.properties │ │ │ ├── base16-atelierseaside-light.properties │ │ │ ├── base16-bespin-dark.properties │ │ │ ├── base16-bespin-light.properties │ │ │ ├── base16-brewer-dark.properties │ │ │ ├── base16-brewer-light.properties │ │ │ ├── base16-bright-dark.properties │ │ │ ├── base16-bright-light.properties │ │ │ ├── base16-chalk-dark.properties │ │ │ ├── base16-chalk-light.properties │ │ │ ├── base16-codeschool-dark.properties │ │ │ ├── base16-codeschool-light.properties │ │ │ ├── base16-colors-dark.properties │ │ │ ├── base16-colors-light.properties │ │ │ ├── base16-default-dark.properties │ │ │ ├── base16-default-light.properties │ │ │ ├── base16-eighties-dark.properties │ │ │ ├── base16-eighties-light.properties │ │ │ ├── base16-embers-dark.properties │ │ │ ├── base16-embers-light.properties │ │ │ ├── base16-flat-dark.properties │ │ │ ├── base16-flat-light.properties │ │ │ ├── base16-google-dark.properties │ │ │ ├── base16-google-light.properties │ │ │ ├── base16-grayscale-dark.properties │ │ │ ├── base16-grayscale-light.properties │ │ │ ├── base16-greenscreen-dark.properties │ │ │ ├── base16-greenscreen-light.properties │ │ │ ├── base16-harmonic16-dark.properties │ │ │ ├── base16-harmonic16-light.properties │ │ │ ├── base16-isotope-dark.properties │ │ │ ├── base16-isotope-light.properties │ │ │ ├── base16-londontube-dark.properties │ │ │ ├── base16-londontube-light.properties │ │ │ ├── base16-marrakesh-dark.properties │ │ │ ├── base16-marrakesh-light.properties │ │ │ ├── base16-materia.properties │ │ │ ├── base16-materia.txt │ │ │ ├── base16-mocha-dark.properties │ │ │ ├── base16-mocha-light.properties │ │ │ ├── base16-monokai-dark.properties │ │ │ ├── base16-monokai-light.properties │ │ │ ├── base16-ocean-dark.properties │ │ │ ├── base16-ocean-light.properties │ │ │ ├── base16-one-dark.properties │ │ │ ├── base16-one-light.properties │ │ │ ├── base16-paraiso-dark.properties │ │ │ ├── base16-paraiso-light.properties │ │ │ ├── base16-railscasts-dark.properties │ │ │ ├── base16-railscasts-light.properties │ │ │ ├── base16-shapeshifter-dark.properties │ │ │ ├── base16-shapeshifter-light.properties │ │ │ ├── base16-snazzy.properties │ │ │ ├── base16-solarized-dark.properties │ │ │ ├── base16-solarized-light.properties │ │ │ ├── base16-summerfruit-dark.properties │ │ │ ├── base16-summerfruit-light.properties │ │ │ ├── base16-tomorrow-dark.properties │ │ │ ├── base16-tomorrow-light.properties │ │ │ ├── base16-twilight-dark.properties │ │ │ ├── base16-twilight-light.properties │ │ │ ├── black-on-white.properties │ │ │ ├── catppuccin-frappe.properties │ │ │ ├── catppuccin-frappe.txt │ │ │ ├── catppuccin-latte.properties │ │ │ ├── catppuccin-latte.txt │ │ │ ├── catppuccin-macchiato.properties │ │ │ ├── catppuccin-macchiato.txt │ │ │ ├── catppuccin-mocha.properties │ │ │ ├── catppuccin-mocha.txt │ │ │ ├── catppuccin.txt │ │ │ ├── dracula.properties │ │ │ ├── e-ink-color.properties │ │ │ ├── e-ink.properties │ │ │ ├── gnometerm-new.properties │ │ │ ├── gnometerm.properties │ │ │ ├── gotham.properties │ │ │ ├── gruvbox-dark.properties │ │ │ ├── gruvbox-light.properties │ │ │ ├── gruvbox-material-dark-hard.properties │ │ │ ├── gruvbox-material-dark-medium.properties │ │ │ ├── gruvbox-material-dark-soft.properties │ │ │ ├── gruvbox-material-light-hard.properties │ │ │ ├── gruvbox-material-light-medium.properties │ │ │ ├── gruvbox-material-light-soft.properties │ │ │ ├── iceberg.properties │ │ │ ├── material.properties │ │ │ ├── nancy.properties │ │ │ ├── neon.properties │ │ │ ├── nord.properties │ │ │ ├── nord.txt │ │ │ ├── rosé-pine-dawn.properties │ │ │ ├── rosé-pine-moon.properties │ │ │ ├── rosé-pine.properties │ │ │ ├── rydgel.properties │ │ │ ├── smyck.properties │ │ │ ├── smyck.txt │ │ │ ├── solarized-dark.properties │ │ │ ├── solarized-light.properties │ │ │ ├── spacemacs.properties │ │ │ ├── tokyonight-dark.properties │ │ │ ├── tokyonight-day.properties │ │ │ ├── tomorrow-night.properties │ │ │ ├── ubuntu.properties │ │ │ ├── white-on-black.properties │ │ │ ├── wild-cherry.properties │ │ │ └── zenburn.properties │ │ └── fonts │ │ │ ├── Anonymous-Pro.ttf │ │ │ ├── Bedstead-Condensed.ttf │ │ │ ├── Bedstead-Condensed.txt │ │ │ ├── CascadiaCode.ttf │ │ │ ├── CascadiaCode.txt │ │ │ ├── Courier-Prime.ttf │ │ │ ├── D2-Coding.ttf │ │ │ ├── D2-Coding.txt │ │ │ ├── DejaVu-Sans-Mono.ttf │ │ │ ├── Fantasque-Sans-Mono.ttf │ │ │ ├── Fantasque-Sans-Mono.txt │ │ │ ├── Fira-Code.ttf │ │ │ ├── Fira-Code.txt │ │ │ ├── Fira-Mono.ttf │ │ │ ├── GNU-FreeFont.ttf │ │ │ ├── Go-Mono.ttf │ │ │ ├── Hack.ttf │ │ │ ├── Hack.txt │ │ │ ├── Hermit.ttf │ │ │ ├── Inconsolata.ttf │ │ │ ├── Iosevka.ttf │ │ │ ├── Iosevka.txt │ │ │ ├── JetBrains-Mono.ttf │ │ │ ├── JetBrains-Mono.txt │ │ │ ├── Liberation-Mono.ttf │ │ │ ├── Meslo.ttf │ │ │ ├── Meslo.txt │ │ │ ├── Monofur.ttf │ │ │ ├── Monofur.txt │ │ │ ├── Monoid.ttf │ │ │ ├── OpenDyslexic.ttf │ │ │ ├── Roboto-Mono.ttf │ │ │ ├── Source-Code-Pro.ttf │ │ │ ├── Terminus.ttf │ │ │ ├── Terminus.txt │ │ │ ├── Ubuntu-Mono.ttf │ │ │ ├── Ubuntu-Mono.txt │ │ │ └── Victor-Mono.ttf │ │ ├── java │ │ └── com │ │ │ └── termux │ │ │ └── styling │ │ │ └── TermuxStyleActivity.kt │ │ └── res │ │ ├── drawable-anydpi-v26 │ │ └── ic_launcher.xml │ │ ├── drawable │ │ ├── ic_foreground.xml │ │ └── ic_launcher.xml │ │ ├── layout │ │ └── layout.xml │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml └── testkey_untrusted.jks ├── build.gradle ├── fontpatcher-py3.patch ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle ├── setup-fonts.sh └── setup-nerd-fonts.sh /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve Termux:Styling application 4 | 5 | --- 6 | 7 | 14 | 15 | **Problem description** 16 | 20 | 21 | **Steps to reproduce** 22 | 26 | 27 | **Expected behavior** 28 | 31 | 32 | **Additional information** 33 | 34 | * Termux application version: 35 | * Android OS version: 36 | * Device model: 37 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest a new feature, color scheme or font for Termux:Styling application 4 | 5 | --- 6 | 7 | 13 | 14 | **Feature description** 15 | 18 | 19 | **Reference implementation** 20 | 26 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: github-actions 4 | directory: / 5 | schedule: 6 | interval: daily 7 | -------------------------------------------------------------------------------- /.github/workflows/github_action_build.yml: -------------------------------------------------------------------------------- 1 | name: GitHub Action Build 2 | 3 | on: 4 | push: 5 | branches: 6 | - master 7 | pull_request: 8 | branches: 9 | - master 10 | schedule: 11 | - cron: "15 0 1 */2 *" 12 | workflow_dispatch: 13 | 14 | jobs: 15 | build: 16 | runs-on: ubuntu-latest 17 | steps: 18 | - name: Clone repository 19 | uses: actions/checkout@v4 20 | 21 | - name: Build 22 | shell: bash {0} 23 | run: | 24 | exit_on_error() { echo "$1"; exit 1; } 25 | 26 | if [ -z "$JAVA_HOME_17_X64" ] || [ ! -f "$JAVA_HOME_17_X64/bin/javac" ] || [ ! -x "$JAVA_HOME_17_X64/bin/javac" ]; then 27 | exit_on_error "jdk-17 binary not found at path '$JAVA_HOME_17_X64/bin/javac' or is not executable." 28 | fi 29 | 30 | echo "Setting vars" 31 | 32 | if [ "$GITHUB_EVENT_NAME" == "pull_request" ]; then 33 | GITHUB_SHA="${{ github.event.pull_request.head.sha }}" # Do not use last merge commit set in GITHUB_SHA 34 | fi 35 | 36 | # Set RELEASE_VERSION_NAME to "+" 37 | CURRENT_VERSION_NAME_REGEX='\s+versionName "([^"]+)"$' 38 | CURRENT_VERSION_NAME="$(grep -m 1 -E "$CURRENT_VERSION_NAME_REGEX" ./app/build.gradle | sed -r "s/$CURRENT_VERSION_NAME_REGEX/\1/")" 39 | RELEASE_VERSION_NAME="v$CURRENT_VERSION_NAME+${GITHUB_SHA:0:7}" # The "+" is necessary so that versioning precedence is not affected 40 | if ! printf "%s" "${RELEASE_VERSION_NAME/v/}" | grep -qP '^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$'; then 41 | exit_on_error "The release version '${RELEASE_VERSION_NAME/v/}' generated from current version '$CURRENT_VERSION_NAME' is not a valid version as per semantic version '2.0.0' spec in the format 'major.minor.patch(-prerelease)(+buildmetadata)'. https://semver.org/spec/v2.0.0.html." 42 | fi 43 | 44 | APK_DIR_PATH="./app/build/outputs/apk/debug" 45 | APK_VERSION_TAG="$RELEASE_VERSION_NAME.github.debug" # Note the ".", GITHUB_SHA will already have "+" before it 46 | APK_BASENAME_PREFIX="termux-styling-app_$APK_VERSION_TAG" 47 | 48 | # Used by upload step later 49 | echo "APK_DIR_PATH=$APK_DIR_PATH" >> $GITHUB_ENV 50 | echo "APK_VERSION_TAG=$APK_VERSION_TAG" >> $GITHUB_ENV 51 | echo "APK_BASENAME_PREFIX=$APK_BASENAME_PREFIX" >> $GITHUB_ENV 52 | 53 | echo "Building APK file for '$RELEASE_VERSION_NAME' release with '$APK_VERSION_TAG' tag" 54 | export TERMUX_STYLING_APP_BUILD__APP_VERSION_NAME="${RELEASE_VERSION_NAME/v/}" # Used by app/build.gradle 55 | export TERMUX_STYLING_APP_BUILD__APK_VERSION_TAG="$APK_VERSION_TAG" # Used by app/build.gradle 56 | export GRADLE_OPTS="-Dorg.gradle.java.home=$JAVA_HOME_17_X64" 57 | if ! ./gradlew assembleDebug; then 58 | exit_on_error "Build failed for '$RELEASE_VERSION_NAME' release with '$APK_VERSION_TAG' tag." 59 | fi 60 | 61 | echo "Validating APK file" 62 | if ! test -f "$APK_DIR_PATH/${APK_BASENAME_PREFIX}.apk"; then 63 | files_found="$(ls "$APK_DIR_PATH")" 64 | exit_on_error "Failed to find built APK file at '$APK_DIR_PATH/${APK_BASENAME_PREFIX}.apk'. Files found: "$'\n'"$files_found" 65 | fi 66 | 67 | echo "Generating checksums-sha256.txt file" 68 | if ! (cd "$APK_DIR_PATH"; sha256sum "${APK_BASENAME_PREFIX}.apk" > checksums-sha256.txt); then 69 | exit_on_error "Generate checksums-sha256.txt file failed for '$RELEASE_VERSION_NAME' release." 70 | fi 71 | echo "checksums-sha256.txt:"$'\n```\n'"$(cat "$APK_DIR_PATH/checksums-sha256.txt")"$'\n```' 72 | 73 | - name: Upload files to action 74 | uses: actions/upload-artifact@v4 75 | with: 76 | name: ${{ env.APK_BASENAME_PREFIX }} 77 | path: | 78 | ${{ env.APK_DIR_PATH }}/${{ env.APK_BASENAME_PREFIX }}.apk 79 | ${{ env.APK_DIR_PATH }}/checksums-sha256.txt 80 | ${{ env.APK_DIR_PATH }}/output-metadata.json 81 | -------------------------------------------------------------------------------- /.github/workflows/github_release_build.yml: -------------------------------------------------------------------------------- 1 | name: GitHub Release Build 2 | 3 | on: 4 | release: 5 | types: 6 | - published 7 | 8 | jobs: 9 | build: 10 | runs-on: ubuntu-latest 11 | env: 12 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 13 | steps: 14 | - name: Clone repository 15 | uses: actions/checkout@v4 16 | with: 17 | ref: ${{ env.GITHUB_REF }} 18 | 19 | - name: Build and upload files to release 20 | shell: bash {0} 21 | run: | 22 | exit_on_error() { 23 | echo "$1" 24 | echo "Deleting '$RELEASE_VERSION_NAME' release and '$GITHUB_REF' tag" 25 | hub release delete "$RELEASE_VERSION_NAME" 26 | git push --delete origin "$GITHUB_REF" 27 | exit 1 28 | } 29 | 30 | if [ -z "$JAVA_HOME_17_X64" ] || [ ! -f "$JAVA_HOME_17_X64/bin/javac" ] || [ ! -x "$JAVA_HOME_17_X64/bin/javac" ]; then 31 | exit_on_error "jdk-17 binary not found at path '$JAVA_HOME_17_X64/bin/javac' or is not executable." 32 | fi 33 | 34 | echo "Setting vars" 35 | RELEASE_VERSION_NAME="${GITHUB_REF/refs\/tags\//}" 36 | if ! printf "%s" "${RELEASE_VERSION_NAME/v/}" | grep -qP '^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$'; then 37 | exit_on_error "The release version '${RELEASE_VERSION_NAME/v/}' is not a valid version as per semantic version '2.0.0' spec in the format 'major.minor.patch(-prerelease)(+buildmetadata)'. https://semver.org/spec/v2.0.0.html." 38 | fi 39 | 40 | APK_DIR_PATH="./app/build/outputs/apk/debug" 41 | APK_VERSION_TAG="$RELEASE_VERSION_NAME+github.debug" 42 | APK_BASENAME_PREFIX="termux-styling-app_$APK_VERSION_TAG" 43 | 44 | echo "Building APK file for '$RELEASE_VERSION_NAME' release with '$APK_VERSION_TAG' tag" 45 | export TERMUX_STYLING_APP_BUILD__APK_VERSION_TAG="$APK_VERSION_TAG" # Used by app/build.gradle 46 | export GRADLE_OPTS="-Dorg.gradle.java.home=$JAVA_HOME_17_X64" 47 | if ! ./gradlew assembleDebug; then 48 | exit_on_error "Build failed for '$RELEASE_VERSION_NAME' release with '$APK_VERSION_TAG' tag." 49 | fi 50 | 51 | echo "Validating APK file" 52 | if ! test -f "$APK_DIR_PATH/${APK_BASENAME_PREFIX}.apk"; then 53 | files_found="$(ls "$APK_DIR_PATH")" 54 | exit_on_error "Failed to find built APK file at '$APK_DIR_PATH/${APK_BASENAME_PREFIX}.apk'. Files found: "$'\n'"$files_found" 55 | fi 56 | 57 | echo "Generating checksums-sha256.txt file" 58 | if ! (cd "$APK_DIR_PATH"; sha256sum "${APK_BASENAME_PREFIX}.apk" > checksums-sha256.txt); then 59 | exit_on_error "Generate checksums-sha256.txt file failed for '$RELEASE_VERSION_NAME' release." 60 | fi 61 | echo "checksums-sha256.txt:"$'\n```\n'"$(cat "$APK_DIR_PATH/checksums-sha256.txt")"$'\n```' 62 | 63 | echo "Uploading files to release" 64 | if ! gh release upload "$RELEASE_VERSION_NAME" \ 65 | "$APK_DIR_PATH/${APK_BASENAME_PREFIX}.apk" \ 66 | "$APK_DIR_PATH/checksums-sha256.txt" \ 67 | ; then 68 | exit_on_error "Upload files to release failed for '$RELEASE_VERSION_NAME' release." 69 | fi 70 | -------------------------------------------------------------------------------- /.github/workflows/nerd-font-setup.yml: -------------------------------------------------------------------------------- 1 | name: Check Nerd Fonts 2 | 3 | on: 4 | push: 5 | branches: [ master ] 6 | pull_request: 7 | branches: [ master ] 8 | 9 | jobs: 10 | build: 11 | runs-on: ubuntu-latest 12 | 13 | steps: 14 | - uses: actions/checkout@v4 15 | 16 | - name: Downloads nerd fonts 17 | run: ./setup-nerd-fonts.sh 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # From https://gist.github.com/iainconnor/8605514 2 | # with the addition of the /captures below. 3 | /captures 4 | 5 | # Built application files 6 | build/ 7 | *.apk 8 | 9 | # Crashlytics configuations 10 | com_crashlytics_export_strings.xml 11 | 12 | # Local configuration file (sdk path, etc) 13 | local.properties 14 | 15 | # Gradle generated files 16 | .gradle/ 17 | 18 | # Signing files 19 | .signing/ 20 | 21 | # User-specific configurations 22 | /.idea/ 23 | *.iml 24 | 25 | # OS-specific files 26 | .DS_Store 27 | .DS_Store? 28 | ._* 29 | .Spotlight-V100 30 | .Trashes 31 | ehthumbs.db 32 | Thumbs.db 33 | 34 | # Vim files 35 | *.swo 36 | *.swp 37 | 38 | /tmp/ 39 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | The `termux/termux-styling` repository is released under [GPLv3 only](https://www.gnu.org/licenses/gpl-3.0.html) license. 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Termux:Styling 2 | 3 | [![Build status](https://github.com/termux/termux-styling/workflows/Build/badge.svg)](https://github.com/termux/termux-styling/actions) 4 | [![Join the chat at https://gitter.im/termux/termux](https://badges.gitter.im/termux/termux.svg)](https://gitter.im/termux/termux) 5 | 6 | A [Termux](https://termux.org) add-on app to customize the terminal font and 7 | color theme. 8 | 9 | When developing (or packaging), note that this app needs to be signed with the 10 | same key as the main Termux app in order to have the permission to modify the 11 | required font or color files. 12 | 13 | ## Installation 14 | 15 | Termux:Styling application can be obtained from [F-Droid](https://f-droid.org/en/packages/com.termux.styling/). 16 | 17 | Additionally we provide per-commit debug builds for those who want to try 18 | out the latest features or test their pull request. This build can be obtained 19 | from one of the workflow runs listed on [Github Actions](https://github.com/termux/termux-styling/actions/workflows/github_action_build.yml?query=branch%3Amaster+event%3Apush) 20 | page. 21 | 22 | Signature keys of all offered builds are different. Before you switch the 23 | installation source, you will have to uninstall the Termux application and 24 | all currently installed plugins. Check https://github.com/termux/termux-app#Installation for more info. 25 | 26 | ## How to use 27 | 28 | 1. When inside Termux, long press anywhere on the terminal. 29 | 2. Select `More...` in the resulting dialog. 30 | 3. Select `Style` in the next dialog. 31 | 4. Click either `CHOOSE COLOR` or `CHOOSE FONT` depending on what you want to customize. 32 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- 1 | plugins { 2 | id 'com.android.application' 3 | id 'kotlin-android' 4 | } 5 | 6 | android { 7 | namespace "com.termux.styling" 8 | 9 | compileSdk project.properties.compileSdkVersion.toInteger() 10 | 11 | def appVersionName = System.getenv("TERMUX_STYLING_APP_BUILD__APP_VERSION_NAME") ?: "" 12 | def apkVersionTag = System.getenv("TERMUX_STYLING_APP_BUILD__APK_VERSION_TAG") ?: "" 13 | 14 | defaultConfig { 15 | applicationId "com.termux.styling" 16 | minSdk project.properties.minSdkVersion.toInteger() 17 | targetSdk project.properties.targetSdkVersion.toInteger() 18 | versionCode 1000 19 | versionName "0.32.1" 20 | 21 | if (appVersionName) versionName = appVersionName 22 | validateVersionName(versionName) 23 | } 24 | 25 | signingConfigs { 26 | debug { 27 | storeFile file('testkey_untrusted.jks') 28 | keyAlias 'alias' 29 | storePassword 'xrj45yWGLbsO7W0v' 30 | keyPassword 'xrj45yWGLbsO7W0v' 31 | } 32 | } 33 | 34 | buildTypes { 35 | release { 36 | minifyEnabled true 37 | shrinkResources true 38 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' 39 | } 40 | 41 | debug { 42 | signingConfig signingConfigs.debug 43 | } 44 | } 45 | 46 | compileOptions { 47 | sourceCompatibility JavaVersion.VERSION_11 48 | targetCompatibility JavaVersion.VERSION_11 49 | } 50 | 51 | kotlinOptions { 52 | jvmTarget = '11' 53 | } 54 | 55 | applicationVariants.all { variant -> 56 | variant.outputs.all { output -> 57 | outputFileName = new File("termux-styling-app_" + 58 | (apkVersionTag ? apkVersionTag : "v" + versionName + "+" + variant.buildType.name) + ".apk") 59 | } 60 | } 61 | } 62 | 63 | dependencies { 64 | implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" 65 | } 66 | 67 | task versionName { 68 | doLast { 69 | print android.defaultConfig.versionName 70 | } 71 | } 72 | 73 | def validateVersionName(String versionName) { 74 | // https://semver.org/spec/v2.0.0.html#is-there-a-suggested-regular-expression-regex-to-check-a-semver-string 75 | // ^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$ 76 | if (!java.util.regex.Pattern.matches("^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?\$", versionName)) 77 | throw new GradleException("The versionName '" + versionName + "' is not a valid version as per semantic version '2.0.0' spec in the format 'major.minor.patch(-prerelease)(+buildmetadata)'. https://semver.org/spec/v2.0.0.html.") 78 | } 79 | -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 12 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/argonaut.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/Mayccoll/Gogh/blob/master/themes/argonaut.sh 2 | background=#0e1019 3 | foreground=#fffaf4 4 | cursor=#fffaf4 5 | 6 | color0=#232323 7 | color1=#ff000f 8 | color2=#8ce10b 9 | color3=#ffb900 10 | color4=#008df8 11 | color5=#6d43a6 12 | color6=#00d8eb 13 | color7=#ffffff 14 | color8=#444444 15 | color9=#ff2740 16 | color10=#abe15b 17 | color11=#ffd242 18 | color12=#0092ff 19 | color13=#9a5feb 20 | color14=#67fff0 21 | color15=#ffffff 22 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-3024-dark.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-3024.dark.256.xresources 2 | # Base16 3024 3 | # Scheme: Jan T. Sott (http://github.com/idleberg) 4 | foreground=#a5a2a2 5 | background=#090300 6 | cursor=#a5a2a2 7 | 8 | color0=#090300 9 | color1=#db2d20 10 | color2=#01a252 11 | color3=#fded02 12 | color4=#01a0e4 13 | color5=#a16a94 14 | color6=#b5e4f4 15 | color7=#a5a2a2 16 | color8=#5c5855 17 | color9=#db2d20 18 | color10=#01a252 19 | color11=#fded02 20 | color12=#01a0e4 21 | color13=#a16a94 22 | color14=#b5e4f4 23 | color15=#f7f7f7 24 | 25 | color16=#e8bbd0 26 | color17=#cdab53 27 | color18=#3a3432 28 | color19=#4a4543 29 | color20=#807d7c 30 | color21=#d6d5d4 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-3024-light.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-3024.light.256.xresources 2 | # Base16 3024 3 | # Scheme: Jan T. Sott (http://github.com/idleberg) 4 | foreground=#4a4543 5 | background=#f7f7f7 6 | cursor=#4a4543 7 | 8 | color0=#090300 9 | color1=#db2d20 10 | color2=#01a252 11 | color3=#fded02 12 | color4=#01a0e4 13 | color5=#a16a94 14 | color6=#b5e4f4 15 | color7=#a5a2a2 16 | color8=#5c5855 17 | color9=#db2d20 18 | color10=#01a252 19 | color11=#fded02 20 | color12=#01a0e4 21 | color13=#a16a94 22 | color14=#b5e4f4 23 | color15=#f7f7f7 24 | 25 | color16=#e8bbd0 26 | color17=#cdab53 27 | color18=#3a3432 28 | color19=#4a4543 29 | color20=#807d7c 30 | color21=#d6d5d4 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-apathy-dark.properties: -------------------------------------------------------------------------------- 1 | foreground= #81B5AC 2 | background= #031A16 3 | cursor= #81B5AC 4 | 5 | color0= #031A16 6 | color1= #3E9688 7 | color2= #883E96 8 | color3= #3E4C96 9 | color4= #96883E 10 | color5= #4C963E 11 | color6= #963E4C 12 | color7= #81B5AC 13 | 14 | color8= #2B685E 15 | color9= #3E9688 16 | color10= #883E96 17 | color11= #3E4C96 18 | color12= #96883E 19 | color13= #4C963E 20 | color14= #963E4C 21 | color15= #D2E7E4 22 | 23 | color16= #3E7996 24 | color17= #3E965B 25 | color18= #0B342D 26 | color19= #184E45 27 | color20= #5F9C92 28 | color21= #A7CEC8 -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-apathy-light.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-apathy.light.256.xresources 2 | # Base16 Apathy 3 | # Scheme: Jannik Siebert (https://github.com/janniks) 4 | foreground=#184E45 5 | background=#D2E7E4 6 | cursor=#184E45 7 | 8 | color0=#031A16 9 | color1=#3E9688 10 | color2=#883E96 11 | color3=#3E4C96 12 | color4=#96883E 13 | color5=#4C963E 14 | color6=#963E4C 15 | color7=#81B5AC 16 | color8=#2B685E 17 | color9=#3E9688 18 | color10=#883E96 19 | color11=#3E4C96 20 | color12=#96883E 21 | color13=#4C963E 22 | color14=#963E4C 23 | color15=#D2E7E4 24 | 25 | color16=#3E7996 26 | color17=#3E965B 27 | color18=#0B342D 28 | color19=#184E45 29 | color20=#5F9C92 30 | color21=#A7CEC8 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-ashes-dark.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-ashes.dark.256.xresources 2 | # Base16 Ashes 3 | # Scheme: Jannik Siebert (https://github.com/janniks) 4 | foreground=#C7CCD1 5 | background=#1C2023 6 | cursor=#C7CCD1 7 | 8 | color0=#1C2023 9 | color1=#C7AE95 10 | color2=#95C7AE 11 | color3=#AEC795 12 | color4=#AE95C7 13 | color5=#C795AE 14 | color6=#95AEC7 15 | color7=#C7CCD1 16 | color8=#747C84 17 | color9=#C7AE95 18 | color10=#95C7AE 19 | color11=#AEC795 20 | color12=#AE95C7 21 | color13=#C795AE 22 | color14=#95AEC7 23 | color15=#F3F4F5 24 | 25 | color16=#C7C795 26 | color17=#C79595 27 | color18=#393F45 28 | color19=#565E65 29 | color20=#ADB3BA 30 | color21=#DFE2E5 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-ashes-light.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-ashes.light.256.xresources 2 | # Base16 Ashes 3 | # Scheme: Jannik Siebert (https://github.com/janniks) 4 | foreground=#565E65 5 | background=#F3F4F5 6 | cursor=#565E65 7 | 8 | color0=#1C2023 9 | color1=#C7AE95 10 | color2=#95C7AE 11 | color3=#AEC795 12 | color4=#AE95C7 13 | color5=#C795AE 14 | color6=#95AEC7 15 | color7=#C7CCD1 16 | color8=#747C84 17 | color9=#C7AE95 18 | color10=#95C7AE 19 | color11=#AEC795 20 | color12=#AE95C7 21 | color13=#C795AE 22 | color14=#95AEC7 23 | color15=#F3F4F5 24 | 25 | color16=#C7C795 26 | color17=#C79595 27 | color18=#393F45 28 | color19=#565E65 29 | color20=#ADB3BA 30 | color21=#DFE2E5 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-atelierdune-dark.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-atelierdune.dark.256.xresources 2 | # Base16 Atelier Dune 3 | # Scheme: Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/dune) 4 | foreground=#a6a28c 5 | background=#20201d 6 | cursor=#a6a28c 7 | 8 | color0=#20201d 9 | color1=#d73737 10 | color2=#60ac39 11 | color3=#cfb017 12 | color4=#6684e1 13 | color5=#b854d4 14 | color6=#1fad83 15 | color7=#a6a28c 16 | color8=#7d7a68 17 | color9=#d73737 18 | color10=#60ac39 19 | color11=#cfb017 20 | color12=#6684e1 21 | color13=#b854d4 22 | color14=#1fad83 23 | color15=#fefbec 24 | 25 | color16=#b65611 26 | color17=#d43552 27 | color18=#292824 28 | color19=#6e6b5e 29 | color20=#999580 30 | color21=#e8e4cf 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-atelierdune-light.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-atelierdune.light.256.xresources 2 | # Base16 Atelier Dune 3 | # Scheme: Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/dune) 4 | foreground=#6e6b5e 5 | background=#fefbec 6 | cursor=#6e6b5e 7 | 8 | color0=#20201d 9 | color1=#d73737 10 | color2=#60ac39 11 | color3=#cfb017 12 | color4=#6684e1 13 | color5=#b854d4 14 | color6=#1fad83 15 | color7=#a6a28c 16 | color8=#7d7a68 17 | color9=#d73737 18 | color10=#60ac39 19 | color11=#cfb017 20 | color12=#6684e1 21 | color13=#b854d4 22 | color14=#1fad83 23 | color15=#fefbec 24 | 25 | color16=#b65611 26 | color17=#d43552 27 | color18=#292824 28 | color19=#6e6b5e 29 | color20=#999580 30 | color21=#e8e4cf 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-atelierforest-dark.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-atelierforest.dark.256.xresources 2 | # Base16 Atelier Forest 3 | # Scheme: Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/forest) 4 | foreground=#a8a19f 5 | background=#1b1918 6 | cursor=#a8a19f 7 | 8 | color0=#1b1918 9 | color1=#f22c40 10 | color2=#5ab738 11 | color3=#d5911a 12 | color4=#407ee7 13 | color5=#6666ea 14 | color6=#00ad9c 15 | color7=#a8a19f 16 | color8=#766e6b 17 | color9=#f22c40 18 | color10=#5ab738 19 | color11=#d5911a 20 | color12=#407ee7 21 | color13=#6666ea 22 | color14=#00ad9c 23 | color15=#f1efee 24 | 25 | color16=#df5320 26 | color17=#c33ff3 27 | color18=#2c2421 28 | color19=#68615e 29 | color20=#9c9491 30 | color21=#e6e2e0 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-atelierforest-light.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-atelierforest.light.256.xresources 2 | # Base16 Atelier Forest 3 | # Scheme: Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/forest) 4 | foreground=#68615e 5 | background=#f1efee 6 | cursor=#68615e 7 | 8 | color0=#1b1918 9 | color1=#f22c40 10 | color2=#5ab738 11 | color3=#d5911a 12 | color4=#407ee7 13 | color5=#6666ea 14 | color6=#00ad9c 15 | color7=#a8a19f 16 | color8=#766e6b 17 | color9=#f22c40 18 | color10=#5ab738 19 | color11=#d5911a 20 | color12=#407ee7 21 | color13=#6666ea 22 | color14=#00ad9c 23 | color15=#f1efee 24 | 25 | color16=#df5320 26 | color17=#c33ff3 27 | color18=#2c2421 28 | color19=#68615e 29 | color20=#9c9491 30 | color21=#e6e2e0 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-atelierheath-dark.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-atelierheath.dark.256.xresources 2 | # Base16 Atelier Heath 3 | # Scheme: Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/heath) 4 | foreground=#ab9bab 5 | background=#1b181b 6 | cursor=#ab9bab 7 | 8 | color0=#1b181b 9 | color1=#ca402b 10 | color2=#379a37 11 | color3=#bb8a35 12 | color4=#516aec 13 | color5=#7b59c0 14 | color6=#159393 15 | color7=#ab9bab 16 | color8=#776977 17 | color9=#ca402b 18 | color10=#379a37 19 | color11=#bb8a35 20 | color12=#516aec 21 | color13=#7b59c0 22 | color14=#159393 23 | color15=#f7f3f7 24 | 25 | color16=#a65926 26 | color17=#cc33cc 27 | color18=#292329 28 | color19=#695d69 29 | color20=#9e8f9e 30 | color21=#d8cad8 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-atelierheath-light.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-atelierheath.light.256.xresources 2 | # Base16 Atelier Heath 3 | # Scheme: Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/heath) 4 | foreground=#695d69 5 | background=#f7f3f7 6 | cursor=#695d69 7 | 8 | color0=#1b181b 9 | color1=#ca402b 10 | color2=#379a37 11 | color3=#bb8a35 12 | color4=#516aec 13 | color5=#7b59c0 14 | color6=#159393 15 | color7=#ab9bab 16 | color8=#776977 17 | color9=#ca402b 18 | color10=#379a37 19 | color11=#bb8a35 20 | color12=#516aec 21 | color13=#7b59c0 22 | color14=#159393 23 | color15=#f7f3f7 24 | 25 | color16=#a65926 26 | color17=#cc33cc 27 | color18=#292329 28 | color19=#695d69 29 | color20=#9e8f9e 30 | color21=#d8cad8 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-atelierlakeside-dark.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-atelierlakeside.dark.256.xresources 2 | # Base16 Atelier Lakeside 3 | # Scheme: Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/lakeside/) 4 | foreground=#7ea2b4 5 | background=#161b1d 6 | cursor=#7ea2b4 7 | 8 | color0=#161b1d 9 | color1=#d22d72 10 | color2=#568c3b 11 | color3=#8a8a0f 12 | color4=#257fad 13 | color5=#5d5db1 14 | color6=#2d8f6f 15 | color7=#7ea2b4 16 | color8=#5a7b8c 17 | color9=#d22d72 18 | color10=#568c3b 19 | color11=#8a8a0f 20 | color12=#257fad 21 | color13=#5d5db1 22 | color14=#2d8f6f 23 | color15=#ebf8ff 24 | 25 | color16=#935c25 26 | color17=#b72dd2 27 | color18=#1f292e 28 | color19=#516d7b 29 | color20=#7195a8 30 | color21=#c1e4f6 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-atelierlakeside-light.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-atelierlakeside.light.256.xresources 2 | # Base16 Atelier Lakeside 3 | # Scheme: Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/lakeside/) 4 | foreground=#516d7b 5 | background=#ebf8ff 6 | cursor=#516d7b 7 | 8 | color0=#161b1d 9 | color1=#d22d72 10 | color2=#568c3b 11 | color3=#8a8a0f 12 | color4=#257fad 13 | color5=#5d5db1 14 | color6=#2d8f6f 15 | color7=#7ea2b4 16 | color8=#5a7b8c 17 | color9=#d22d72 18 | color10=#568c3b 19 | color11=#8a8a0f 20 | color12=#257fad 21 | color13=#5d5db1 22 | color14=#2d8f6f 23 | color15=#ebf8ff 24 | 25 | color16=#935c25 26 | color17=#b72dd2 27 | color18=#1f292e 28 | color19=#516d7b 29 | color20=#7195a8 30 | color21=#c1e4f6 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-atelierseaside-dark.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-atelierseaside.dark.256.xresources 2 | # Base16 Atelier Seaside 3 | # Scheme: Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/seaside/) 4 | foreground=#8ca68c 5 | background=#131513 6 | cursor=#8ca68c 7 | 8 | color0=#131513 9 | color1=#e6193c 10 | color2=#29a329 11 | color3=#c3c322 12 | color4=#3d62f5 13 | color5=#ad2bee 14 | color6=#1999b3 15 | color7=#8ca68c 16 | color8=#687d68 17 | color9=#e6193c 18 | color10=#29a329 19 | color11=#c3c322 20 | color12=#3d62f5 21 | color13=#ad2bee 22 | color14=#1999b3 23 | color15=#f0fff0 24 | 25 | color16=#87711d 26 | color17=#e619c3 27 | color18=#242924 28 | color19=#5e6e5e 29 | color20=#809980 30 | color21=#cfe8cf 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-atelierseaside-light.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-atelierseaside.light.256.xresources 2 | # Base16 Atelier Seaside 3 | # Scheme: Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/seaside/) 4 | foreground=#5e6e5e 5 | background=#f0fff0 6 | cursor=#5e6e5e 7 | 8 | color0=#131513 9 | color1=#e6193c 10 | color2=#29a329 11 | color3=#c3c322 12 | color4=#3d62f5 13 | color5=#ad2bee 14 | color6=#1999b3 15 | color7=#8ca68c 16 | color8=#687d68 17 | color9=#e6193c 18 | color10=#29a329 19 | color11=#c3c322 20 | color12=#3d62f5 21 | color13=#ad2bee 22 | color14=#1999b3 23 | color15=#f0fff0 24 | 25 | color16=#87711d 26 | color17=#e619c3 27 | color18=#242924 28 | color19=#5e6e5e 29 | color20=#809980 30 | color21=#cfe8cf 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-bespin-dark.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-bespin.dark.256.xresources 2 | # Base16 Bespin 3 | # Scheme: Jan T. Sott 4 | foreground=#8a8986 5 | background=#28211c 6 | cursor=#8a8986 7 | 8 | color0=#28211c 9 | color1=#cf6a4c 10 | color2=#54be0d 11 | color3=#f9ee98 12 | color4=#5ea6ea 13 | color5=#9b859d 14 | color6=#afc4db 15 | color7=#8a8986 16 | color8=#666666 17 | color9=#cf6a4c 18 | color10=#54be0d 19 | color11=#f9ee98 20 | color12=#5ea6ea 21 | color13=#9b859d 22 | color14=#afc4db 23 | color15=#baae9e 24 | 25 | color16=#cf7d34 26 | color17=#937121 27 | color18=#36312e 28 | color19=#5e5d5c 29 | color20=#797977 30 | color21=#9d9b97 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-bespin-light.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-bespin.light.256.xresources 2 | # Base16 Bespin 3 | # Scheme: Jan T. Sott 4 | foreground=#5e5d5c 5 | background=#baae9e 6 | cursor=#5e5d5c 7 | 8 | color0=#28211c 9 | color1=#cf6a4c 10 | color2=#54be0d 11 | color3=#f9ee98 12 | color4=#5ea6ea 13 | color5=#9b859d 14 | color6=#afc4db 15 | color7=#8a8986 16 | color8=#666666 17 | color9=#cf6a4c 18 | color10=#54be0d 19 | color11=#f9ee98 20 | color12=#5ea6ea 21 | color13=#9b859d 22 | color14=#afc4db 23 | color15=#baae9e 24 | 25 | color16=#cf7d34 26 | color17=#937121 27 | color18=#36312e 28 | color19=#5e5d5c 29 | color20=#797977 30 | color21=#9d9b97 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-brewer-dark.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-brewer.dark.256.xresources 2 | # Base16 Brewer 3 | # Scheme: Timothée Poisot (http://github.com/tpoisot) 4 | foreground=#b7b8b9 5 | background=#0c0d0e 6 | cursor=#b7b8b9 7 | 8 | color0=#0c0d0e 9 | color1=#e31a1c 10 | color2=#31a354 11 | color3=#dca060 12 | color4=#3182bd 13 | color5=#756bb1 14 | color6=#80b1d3 15 | color7=#b7b8b9 16 | color8=#737475 17 | color9=#e31a1c 18 | color10=#31a354 19 | color11=#dca060 20 | color12=#3182bd 21 | color13=#756bb1 22 | color14=#80b1d3 23 | color15=#fcfdfe 24 | 25 | color16=#e6550d 26 | color17=#b15928 27 | color18=#2e2f30 28 | color19=#515253 29 | color20=#959697 30 | color21=#dadbdc 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-brewer-light.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-brewer.light.256.xresources 2 | # Base16 Brewer 3 | # Scheme: Timothée Poisot (http://github.com/tpoisot) 4 | foreground=#515253 5 | background=#fcfdfe 6 | cursor=#515253 7 | 8 | color0=#0c0d0e 9 | color1=#e31a1c 10 | color2=#31a354 11 | color3=#dca060 12 | color4=#3182bd 13 | color5=#756bb1 14 | color6=#80b1d3 15 | color7=#b7b8b9 16 | color8=#737475 17 | color9=#e31a1c 18 | color10=#31a354 19 | color11=#dca060 20 | color12=#3182bd 21 | color13=#756bb1 22 | color14=#80b1d3 23 | color15=#fcfdfe 24 | 25 | color16=#e6550d 26 | color17=#b15928 27 | color18=#2e2f30 28 | color19=#515253 29 | color20=#959697 30 | color21=#dadbdc 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-bright-dark.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-bright.dark.256.xresources 2 | # Base16 Bright 3 | # Scheme: Chris Kempson (http://chriskempson.com) 4 | foreground=#e0e0e0 5 | background=#000000 6 | cursor=#e0e0e0 7 | 8 | color0=#000000 9 | color1=#fb0120 10 | color2=#a1c659 11 | color3=#fda331 12 | color4=#6fb3d2 13 | color5=#d381c3 14 | color6=#76c7b7 15 | color7=#e0e0e0 16 | color8=#b0b0b0 17 | color9=#fb0120 18 | color10=#a1c659 19 | color11=#fda331 20 | color12=#6fb3d2 21 | color13=#d381c3 22 | color14=#76c7b7 23 | color15=#ffffff 24 | 25 | color16=#fc6d24 26 | color17=#be643c 27 | color18=#303030 28 | color19=#505050 29 | color20=#d0d0d0 30 | color21=#f5f5f5 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-bright-light.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-bright.light.256.xresources 2 | # Base16 Bright 3 | # Scheme: Chris Kempson (http://chriskempson.com) 4 | foreground=#505050 5 | background=#ffffff 6 | cursor=#505050 7 | 8 | color0=#000000 9 | color1=#fb0120 10 | color2=#a1c659 11 | color3=#fda331 12 | color4=#6fb3d2 13 | color5=#d381c3 14 | color6=#76c7b7 15 | color7=#e0e0e0 16 | color8=#b0b0b0 17 | color9=#fb0120 18 | color10=#a1c659 19 | color11=#fda331 20 | color12=#6fb3d2 21 | color13=#d381c3 22 | color14=#76c7b7 23 | color15=#ffffff 24 | 25 | color16=#fc6d24 26 | color17=#be643c 27 | color18=#303030 28 | color19=#505050 29 | color20=#d0d0d0 30 | color21=#f5f5f5 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-chalk-dark.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-chalk.dark.256.xresources 2 | # Base16 Chalk 3 | # Scheme: Chris Kempson (http://chriskempson.com) 4 | foreground=#d0d0d0 5 | background=#151515 6 | cursor=#d0d0d0 7 | 8 | color0=#151515 9 | color1=#fb9fb1 10 | color2=#acc267 11 | color3=#ddb26f 12 | color4=#6fc2ef 13 | color5=#e1a3ee 14 | color6=#12cfc0 15 | color7=#d0d0d0 16 | color8=#505050 17 | color9=#fb9fb1 18 | color10=#acc267 19 | color11=#ddb26f 20 | color12=#6fc2ef 21 | color13=#e1a3ee 22 | color14=#12cfc0 23 | color15=#f5f5f5 24 | 25 | color16=#eda987 26 | color17=#deaf8f 27 | color18=#202020 28 | color19=#303030 29 | color20=#b0b0b0 30 | color21=#e0e0e0 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-chalk-light.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-chalk.light.256.xresources 2 | # Base16 Chalk 3 | # Scheme: Chris Kempson (http://chriskempson.com) 4 | foreground=#303030 5 | background=#f5f5f5 6 | cursor=#303030 7 | 8 | color0=#151515 9 | color1=#fb9fb1 10 | color2=#acc267 11 | color3=#ddb26f 12 | color4=#6fc2ef 13 | color5=#e1a3ee 14 | color6=#12cfc0 15 | color7=#d0d0d0 16 | color8=#505050 17 | color9=#fb9fb1 18 | color10=#acc267 19 | color11=#ddb26f 20 | color12=#6fc2ef 21 | color13=#e1a3ee 22 | color14=#12cfc0 23 | color15=#f5f5f5 24 | 25 | color16=#eda987 26 | color17=#deaf8f 27 | color18=#202020 28 | color19=#303030 29 | color20=#b0b0b0 30 | color21=#e0e0e0 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-codeschool-dark.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-codeschool.dark.256.xresources 2 | # Base16 Codeschool 3 | # Scheme: brettof86 4 | foreground=#9ea7a6 5 | background=#232c31 6 | cursor=#9ea7a6 7 | 8 | color0=#232c31 9 | color1=#2a5491 10 | color2=#237986 11 | color3=#a03b1e 12 | color4=#484d79 13 | color5=#c59820 14 | color6=#b02f30 15 | color7=#9ea7a6 16 | color8=#3f4944 17 | color9=#2a5491 18 | color10=#237986 19 | color11=#a03b1e 20 | color12=#484d79 21 | color13=#c59820 22 | color14=#b02f30 23 | color15=#b5d8f6 24 | 25 | color16=#43820d 26 | color17=#c98344 27 | color18=#1c3657 28 | color19=#2a343a 29 | color20=#84898c 30 | color21=#a7cfa3 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-codeschool-light.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-codeschool.light.256.xresources 2 | # Base16 Codeschool 3 | # Scheme: brettof86 4 | foreground=#2a343a 5 | background=#b5d8f6 6 | cursor=#2a343a 7 | 8 | color0=#232c31 9 | color1=#2a5491 10 | color2=#237986 11 | color3=#a03b1e 12 | color4=#484d79 13 | color5=#c59820 14 | color6=#b02f30 15 | color7=#9ea7a6 16 | color8=#3f4944 17 | color9=#2a5491 18 | color10=#237986 19 | color11=#a03b1e 20 | color12=#484d79 21 | color13=#c59820 22 | color14=#b02f30 23 | color15=#b5d8f6 24 | 25 | color16=#43820d 26 | color17=#c98344 27 | color18=#1c3657 28 | color19=#2a343a 29 | color20=#84898c 30 | color21=#a7cfa3 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-colors-dark.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-colors.dark.256.xresources 2 | # Base16 Colors 3 | # Scheme: mrmrs (http://clrs.cc) 4 | foreground=#bbbbbb 5 | background=#111111 6 | cursor=#bbbbbb 7 | 8 | color0=#111111 9 | color1=#ff4136 10 | color2=#2ecc40 11 | color3=#ffdc00 12 | color4=#0074d9 13 | color5=#b10dc9 14 | color6=#7fdbff 15 | color7=#bbbbbb 16 | color8=#777777 17 | color9=#ff4136 18 | color10=#2ecc40 19 | color11=#ffdc00 20 | color12=#0074d9 21 | color13=#b10dc9 22 | color14=#7fdbff 23 | color15=#ffffff 24 | 25 | color16=#ff851b 26 | color17=#85144b 27 | color18=#333333 28 | color19=#555555 29 | color20=#999999 30 | color21=#dddddd 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-colors-light.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-colors.light.256.xresources 2 | # Base16 Colors 3 | # Scheme: mrmrs (http://clrs.cc) 4 | foreground=#555555 5 | background=#ffffff 6 | cursor=#555555 7 | 8 | color0=#111111 9 | color1=#ff4136 10 | color2=#2ecc40 11 | color3=#ffdc00 12 | color4=#0074d9 13 | color5=#b10dc9 14 | color6=#7fdbff 15 | color7=#bbbbbb 16 | color8=#777777 17 | color9=#ff4136 18 | color10=#2ecc40 19 | color11=#ffdc00 20 | color12=#0074d9 21 | color13=#b10dc9 22 | color14=#7fdbff 23 | color15=#ffffff 24 | 25 | color16=#ff851b 26 | color17=#85144b 27 | color18=#333333 28 | color19=#555555 29 | color20=#999999 30 | color21=#dddddd 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-default-dark.properties: -------------------------------------------------------------------------------- 1 | # https=//github.com/chriskempson/base16-xresources/blob/master/base16-default.dark.256.xresources 2 | # Base16 Default 3 | # Scheme=Chris Kempson (http=//chriskempson.com) 4 | 5 | foreground=#d8d8d8 6 | background=#181818 7 | cursor=#d8d8d8 8 | 9 | color0=#181818 10 | color1=#ab4642 11 | color2=#a1b56c 12 | color3=#f7ca88 13 | color4=#7cafc2 14 | color5=#ba8baf 15 | color6=#86c1b9 16 | color7=#d8d8d8 17 | 18 | color8=#585858 19 | color9=#ab4642 20 | color10=#a1b56c 21 | color11=#f7ca88 22 | color12=#7cafc2 23 | color13=#ba8baf 24 | color14=#86c1b9 25 | color15=#f8f8f8 26 | 27 | color16=#dc9656 28 | color17=#a16946 29 | color18=#282828 30 | color19=#383838 31 | color20=#b8b8b8 32 | color21=#e8e8e8 -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-default-light.properties: -------------------------------------------------------------------------------- 1 | foreground= #383838 2 | background= #f8f8f8 3 | cursor= #383838 4 | 5 | color0= #181818 6 | color1= #ab4642 7 | color2= #a1b56c 8 | color3= #f7ca88 9 | color4= #7cafc2 10 | color5= #ba8baf 11 | color6= #86c1b9 12 | color7= #d8d8d8 13 | 14 | color8= #585858 15 | color9= #ab4642 16 | color10= #a1b56c 17 | color11= #f7ca88 18 | color12= #7cafc2 19 | color13= #ba8baf 20 | color14= #86c1b9 21 | color15= #f8f8f8 22 | 23 | color16= #dc9656 24 | color17= #a16946 25 | color18= #282828 26 | color19= #383838 27 | color20= #b8b8b8 28 | color21= #e8e8e8 -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-eighties-dark.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-eighties.dark.256.xresources 2 | # Base16 Eighties 3 | # Scheme: Chris Kempson (http://chriskempson.com) 4 | foreground=#d3d0c8 5 | background=#2d2d2d 6 | cursor=#d3d0c8 7 | 8 | color0=#2d2d2d 9 | color1=#f2777a 10 | color2=#99cc99 11 | color3=#ffcc66 12 | color4=#6699cc 13 | color5=#cc99cc 14 | color6=#66cccc 15 | color7=#d3d0c8 16 | color8=#747369 17 | color9=#f2777a 18 | color10=#99cc99 19 | color11=#ffcc66 20 | color12=#6699cc 21 | color13=#cc99cc 22 | color14=#66cccc 23 | color15=#f2f0ec 24 | 25 | color16=#f99157 26 | color17=#d27b53 27 | color18=#393939 28 | color19=#515151 29 | color20=#a09f93 30 | color21=#e8e6df 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-eighties-light.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-eighties.light.256.xresources 2 | # Base16 Eighties 3 | # Scheme: Chris Kempson (http://chriskempson.com) 4 | foreground=#515151 5 | background=#f2f0ec 6 | cursor=#515151 7 | 8 | color0=#2d2d2d 9 | color1=#f2777a 10 | color2=#99cc99 11 | color3=#ffcc66 12 | color4=#6699cc 13 | color5=#cc99cc 14 | color6=#66cccc 15 | color7=#d3d0c8 16 | color8=#747369 17 | color9=#f2777a 18 | color10=#99cc99 19 | color11=#ffcc66 20 | color12=#6699cc 21 | color13=#cc99cc 22 | color14=#66cccc 23 | color15=#f2f0ec 24 | 25 | color16=#f99157 26 | color17=#d27b53 27 | color18=#393939 28 | color19=#515151 29 | color20=#a09f93 30 | color21=#e8e6df 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-embers-dark.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-embers.dark.256.xresources 2 | # Base16 Embers 3 | # Scheme: Jannik Siebert (https://github.com/janniks) 4 | foreground=#A39A90 5 | background=#16130F 6 | cursor=#A39A90 7 | 8 | color0=#16130F 9 | color1=#826D57 10 | color2=#57826D 11 | color3=#6D8257 12 | color4=#6D5782 13 | color5=#82576D 14 | color6=#576D82 15 | color7=#A39A90 16 | color8=#5A5047 17 | color9=#826D57 18 | color10=#57826D 19 | color11=#6D8257 20 | color12=#6D5782 21 | color13=#82576D 22 | color14=#576D82 23 | color15=#DBD6D1 24 | 25 | color16=#828257 26 | color17=#825757 27 | color18=#2C2620 28 | color19=#433B32 29 | color20=#8A8075 30 | color21=#BEB6AE 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-embers-light.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-embers.light.256.xresources 2 | # Base16 Embers 3 | # Scheme: Jannik Siebert (https://github.com/janniks) 4 | foreground=#433B32 5 | background=#DBD6D1 6 | cursor=#433B32 7 | 8 | color0=#16130F 9 | color1=#826D57 10 | color2=#57826D 11 | color3=#6D8257 12 | color4=#6D5782 13 | color5=#82576D 14 | color6=#576D82 15 | color7=#A39A90 16 | color8=#5A5047 17 | color9=#826D57 18 | color10=#57826D 19 | color11=#6D8257 20 | color12=#6D5782 21 | color13=#82576D 22 | color14=#576D82 23 | color15=#DBD6D1 24 | 25 | color16=#828257 26 | color17=#825757 27 | color18=#2C2620 28 | color19=#433B32 29 | color20=#8A8075 30 | color21=#BEB6AE 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-flat-dark.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-flat.dark.256.xresources 2 | # Base16 Flat 3 | # Scheme: Chris Kempson (http://chriskempson.com) 4 | foreground=#e0e0e0 5 | background=#2C3E50 6 | cursor=#e0e0e0 7 | 8 | color0=#2C3E50 9 | color1=#E74C3C 10 | color2=#2ECC71 11 | color3=#F1C40F 12 | color4=#3498DB 13 | color5=#9B59B6 14 | color6=#1ABC9C 15 | color7=#e0e0e0 16 | color8=#95A5A6 17 | color9=#E74C3C 18 | color10=#2ECC71 19 | color11=#F1C40F 20 | color12=#3498DB 21 | color13=#9B59B6 22 | color14=#1ABC9C 23 | color15=#ECF0F1 24 | 25 | color16=#E67E22 26 | color17=#be643c 27 | color18=#34495E 28 | color19=#7F8C8D 29 | color20=#BDC3C7 30 | color21=#f5f5f5 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-flat-light.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-flat.light.256.xresources 2 | # Base16 Flat 3 | # Scheme: Chris Kempson (http://chriskempson.com) 4 | foreground=#7F8C8D 5 | background=#ECF0F1 6 | cursor=#7F8C8D 7 | 8 | color0=#2C3E50 9 | color1=#E74C3C 10 | color2=#2ECC71 11 | color3=#F1C40F 12 | color4=#3498DB 13 | color5=#9B59B6 14 | color6=#1ABC9C 15 | color7=#e0e0e0 16 | color8=#95A5A6 17 | color9=#E74C3C 18 | color10=#2ECC71 19 | color11=#F1C40F 20 | color12=#3498DB 21 | color13=#9B59B6 22 | color14=#1ABC9C 23 | color15=#ECF0F1 24 | 25 | color16=#E67E22 26 | color17=#be643c 27 | color18=#34495E 28 | color19=#7F8C8D 29 | color20=#BDC3C7 30 | color21=#f5f5f5 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-google-dark.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-google.dark.256.xresources 2 | # Base16 Google 3 | # Scheme: Seth Wright (http://sethawright.com) 4 | foreground=#c5c8c6 5 | background=#1d1f21 6 | cursor=#c5c8c6 7 | 8 | color0=#1d1f21 9 | color1=#CC342B 10 | color2=#198844 11 | color3=#FBA922 12 | color4=#3971ED 13 | color5=#A36AC7 14 | color6=#3971ED 15 | color7=#c5c8c6 16 | color8=#969896 17 | color9=#CC342B 18 | color10=#198844 19 | color11=#FBA922 20 | color12=#3971ED 21 | color13=#A36AC7 22 | color14=#3971ED 23 | color15=#ffffff 24 | 25 | color16=#F96A38 26 | color17=#3971ED 27 | color18=#282a2e 28 | color19=#373b41 29 | color20=#b4b7b4 30 | color21=#e0e0e0 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-google-light.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-google.light.256.xresources 2 | # Base16 Google 3 | # Scheme: Seth Wright (http://sethawright.com) 4 | foreground=#373b41 5 | background=#ffffff 6 | cursor=#373b41 7 | 8 | color0=#1d1f21 9 | color1=#CC342B 10 | color2=#198844 11 | color3=#FBA922 12 | color4=#3971ED 13 | color5=#A36AC7 14 | color6=#3971ED 15 | color7=#c5c8c6 16 | color8=#969896 17 | color9=#CC342B 18 | color10=#198844 19 | color11=#FBA922 20 | color12=#3971ED 21 | color13=#A36AC7 22 | color14=#3971ED 23 | color15=#ffffff 24 | 25 | color16=#F96A38 26 | color17=#3971ED 27 | color18=#282a2e 28 | color19=#373b41 29 | color20=#b4b7b4 30 | color21=#e0e0e0 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-grayscale-dark.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-grayscale.dark.256.xresources 2 | # Base16 Grayscale 3 | # Scheme: Alexandre Gavioli (https://github.com/Alexx2/) 4 | foreground=#b9b9b9 5 | background=#101010 6 | cursor=#b9b9b9 7 | 8 | color0=#101010 9 | color1=#7c7c7c 10 | color2=#8e8e8e 11 | color3=#a0a0a0 12 | color4=#686868 13 | color5=#747474 14 | color6=#868686 15 | color7=#b9b9b9 16 | color8=#525252 17 | color9=#7c7c7c 18 | color10=#8e8e8e 19 | color11=#a0a0a0 20 | color12=#686868 21 | color13=#747474 22 | color14=#868686 23 | color15=#f7f7f7 24 | 25 | color16=#999999 26 | color17=#5e5e5e 27 | color18=#252525 28 | color19=#464646 29 | color20=#ababab 30 | color21=#e3e3e3 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-grayscale-light.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-grayscale.light.256.xresources 2 | # Base16 Grayscale 3 | # Scheme: Alexandre Gavioli (https://github.com/Alexx2/) 4 | foreground=#464646 5 | background=#f7f7f7 6 | cursor=#464646 7 | 8 | color0=#101010 9 | color1=#7c7c7c 10 | color2=#8e8e8e 11 | color3=#a0a0a0 12 | color4=#686868 13 | color5=#747474 14 | color6=#868686 15 | color7=#b9b9b9 16 | color8=#525252 17 | color9=#7c7c7c 18 | color10=#8e8e8e 19 | color11=#a0a0a0 20 | color12=#686868 21 | color13=#747474 22 | color14=#868686 23 | color15=#f7f7f7 24 | 25 | color16=#999999 26 | color17=#5e5e5e 27 | color18=#252525 28 | color19=#464646 29 | color20=#ababab 30 | color21=#e3e3e3 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-greenscreen-dark.properties: -------------------------------------------------------------------------------- 1 | foreground: #00bb00 2 | background: #001100 3 | cursor: #00bb00 4 | 5 | color0: #001100 6 | color1: #007700 7 | color2: #00bb00 8 | color3: #007700 9 | color4: #009900 10 | color5: #00bb00 11 | color6: #005500 12 | color7: #00bb00 13 | 14 | color8: #007700 15 | color9: #007700 16 | color10: #00bb00 17 | color11: #007700 18 | color12: #009900 19 | color13: #00bb00 20 | color14: #005500 21 | color15: #00ff00 22 | 23 | color16: #009900 24 | color17: #005500 25 | color18: #003300 26 | color19: #005500 27 | color20: #009900 28 | color21: #00dd00 29 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-greenscreen-light.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-greenscreen.light.256.xresources 2 | # Base16 Green Screen 3 | # Scheme: Chris Kempson (http://chriskempson.com) 4 | foreground=#005500 5 | background=#00ff00 6 | cursor=#005500 7 | 8 | color0=#001100 9 | color1=#007700 10 | color2=#00bb00 11 | color3=#007700 12 | color4=#009900 13 | color5=#00bb00 14 | color6=#005500 15 | color7=#00bb00 16 | color8=#007700 17 | color9=#007700 18 | color10=#00bb00 19 | color11=#007700 20 | color12=#009900 21 | color13=#00bb00 22 | color14=#005500 23 | color15=#00ff00 24 | 25 | color16=#009900 26 | color17=#005500 27 | color18=#003300 28 | color19=#005500 29 | color20=#009900 30 | color21=#00dd00 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-harmonic16-dark.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-harmonic16.dark.256.xresources 2 | # Base16 harmonic16 3 | # Scheme: Jannik Siebert (https://github.com/janniks) 4 | foreground=#cbd6e2 5 | background=#0b1c2c 6 | cursor=#cbd6e2 7 | 8 | color0=#0b1c2c 9 | color1=#bf8b56 10 | color2=#56bf8b 11 | color3=#8bbf56 12 | color4=#8b56bf 13 | color5=#bf568b 14 | color6=#568bbf 15 | color7=#cbd6e2 16 | color8=#627e99 17 | color9=#bf8b56 18 | color10=#56bf8b 19 | color11=#8bbf56 20 | color12=#8b56bf 21 | color13=#bf568b 22 | color14=#568bbf 23 | color15=#f7f9fb 24 | 25 | color16=#bfbf56 26 | color17=#bf5656 27 | color18=#223b54 28 | color19=#405c79 29 | color20=#aabcce 30 | color21=#e5ebf1 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-harmonic16-light.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-harmonic16.light.256.xresources 2 | # Base16 harmonic16 3 | # Scheme: Jannik Siebert (https://github.com/janniks) 4 | foreground=#405c79 5 | background=#f7f9fb 6 | cursor=#405c79 7 | 8 | color0=#0b1c2c 9 | color1=#bf8b56 10 | color2=#56bf8b 11 | color3=#8bbf56 12 | color4=#8b56bf 13 | color5=#bf568b 14 | color6=#568bbf 15 | color7=#cbd6e2 16 | color8=#627e99 17 | color9=#bf8b56 18 | color10=#56bf8b 19 | color11=#8bbf56 20 | color12=#8b56bf 21 | color13=#bf568b 22 | color14=#568bbf 23 | color15=#f7f9fb 24 | 25 | color16=#bfbf56 26 | color17=#bf5656 27 | color18=#223b54 28 | color19=#405c79 29 | color20=#aabcce 30 | color21=#e5ebf1 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-isotope-dark.properties: -------------------------------------------------------------------------------- 1 | # Base16 Isotope 2 | # Scheme: Jan T. Sott 3 | 4 | foreground: #d0d0d0 5 | background: #000000 6 | cursor: #d0d0d0 7 | 8 | color0: #000000 9 | color1: #ff0000 10 | color2: #33ff00 11 | color3: #ff0099 12 | color4: #0066ff 13 | color5: #cc00ff 14 | color6: #00ffff 15 | color7: #d0d0d0 16 | 17 | color8: #808080 18 | color9: #ff0000 19 | color10: #33ff00 20 | color11: #ff0099 21 | color12: #0066ff 22 | color13: #cc00ff 23 | color14: #00ffff 24 | color15: #ffffff 25 | 26 | color16: #ff9900 27 | color17: #3300ff 28 | color18: #404040 29 | color19: #606060 30 | color20: #c0c0c0 31 | color21: #e0e0e0 32 | 33 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-isotope-light.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-isotope.light.256.xresources 2 | # Base16 Isotope 3 | # Scheme: Jan T. Sott 4 | foreground=#606060 5 | background=#ffffff 6 | cursor=#606060 7 | 8 | color0=#000000 9 | color1=#ff0000 10 | color2=#33ff00 11 | color3=#ff0099 12 | color4=#0066ff 13 | color5=#cc00ff 14 | color6=#00ffff 15 | color7=#d0d0d0 16 | color8=#808080 17 | color9=#ff0000 18 | color10=#33ff00 19 | color11=#ff0099 20 | color12=#0066ff 21 | color13=#cc00ff 22 | color14=#00ffff 23 | color15=#ffffff 24 | 25 | color16=#ff9900 26 | color17=#3300ff 27 | color18=#404040 28 | color19=#606060 29 | color20=#c0c0c0 30 | color21=#e0e0e0 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-londontube-dark.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-londontube.dark.256.xresources 2 | # Base16 London Tube 3 | # Scheme: Jan T. Sott 4 | foreground=#d9d8d8 5 | background=#231f20 6 | cursor=#d9d8d8 7 | 8 | color0=#231f20 9 | color1=#ee2e24 10 | color2=#00853e 11 | color3=#ffd204 12 | color4=#009ddc 13 | color5=#98005d 14 | color6=#85cebc 15 | color7=#d9d8d8 16 | color8=#737171 17 | color9=#ee2e24 18 | color10=#00853e 19 | color11=#ffd204 20 | color12=#009ddc 21 | color13=#98005d 22 | color14=#85cebc 23 | color15=#ffffff 24 | 25 | color16=#f386a1 26 | color17=#b06110 27 | color18=#1c3f95 28 | color19=#5a5758 29 | color20=#959ca1 30 | color21=#e7e7e8 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-londontube-light.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-londontube.light.256.xresources 2 | # Base16 London Tube 3 | # Scheme: Jan T. Sott 4 | foreground=#5a5758 5 | background=#ffffff 6 | cursor=#5a5758 7 | 8 | color0=#231f20 9 | color1=#ee2e24 10 | color2=#00853e 11 | color3=#ffd204 12 | color4=#009ddc 13 | color5=#98005d 14 | color6=#85cebc 15 | color7=#d9d8d8 16 | color8=#737171 17 | color9=#ee2e24 18 | color10=#00853e 19 | color11=#ffd204 20 | color12=#009ddc 21 | color13=#98005d 22 | color14=#85cebc 23 | color15=#ffffff 24 | 25 | color16=#f386a1 26 | color17=#b06110 27 | color18=#1c3f95 28 | color19=#5a5758 29 | color20=#959ca1 30 | color21=#e7e7e8 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-marrakesh-dark.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-marrakesh.dark.256.xresources 2 | # Base16 Marrakesh 3 | # Scheme: Alexandre Gavioli (http://github.com/Alexx2/) 4 | foreground=#948e48 5 | background=#201602 6 | cursor=#948e48 7 | 8 | color0=#201602 9 | color1=#c35359 10 | color2=#18974e 11 | color3=#a88339 12 | color4=#477ca1 13 | color5=#8868b3 14 | color6=#75a738 15 | color7=#948e48 16 | color8=#6c6823 17 | color9=#c35359 18 | color10=#18974e 19 | color11=#a88339 20 | color12=#477ca1 21 | color13=#8868b3 22 | color14=#75a738 23 | color15=#faf0a5 24 | 25 | color16=#b36144 26 | color17=#b3588e 27 | color18=#302e00 28 | color19=#5f5b17 29 | color20=#86813b 30 | color21=#ccc37a 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-marrakesh-light.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-marrakesh.light.256.xresources 2 | # Base16 Marrakesh 3 | # Scheme: Alexandre Gavioli (http://github.com/Alexx2/) 4 | foreground=#5f5b17 5 | background=#faf0a5 6 | cursor=#5f5b17 7 | 8 | color0=#201602 9 | color1=#c35359 10 | color2=#18974e 11 | color3=#a88339 12 | color4=#477ca1 13 | color5=#8868b3 14 | color6=#75a738 15 | color7=#948e48 16 | color8=#6c6823 17 | color9=#c35359 18 | color10=#18974e 19 | color11=#a88339 20 | color12=#477ca1 21 | color13=#8868b3 22 | color14=#75a738 23 | color15=#faf0a5 24 | 25 | color16=#b36144 26 | color17=#b3588e 27 | color18=#302e00 28 | color19=#5f5b17 29 | color20=#86813b 30 | color21=#ccc37a 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-materia.properties: -------------------------------------------------------------------------------- 1 | foreground=#c9ccd3 2 | background=#263238 3 | cursor=#c9ccd3 4 | 5 | color0=#2c393f 6 | color1=#8bd649 7 | color2=#82aaff 8 | color3=#89ddff 9 | color4=#ea9560 10 | color5=#ec5f67 11 | color6=#ec5f67 12 | color7=#cdd3de 13 | 14 | color8=#707880 15 | color9=#8bd649 16 | color10=#82aaff 17 | color11=#89ddff 18 | color12=#ea9560 19 | color13=#ec5f67 20 | color14=#ffffff 21 | color15=#d5dbe6 22 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-materia.txt: -------------------------------------------------------------------------------- 1 | Materia color scheme by Defman21. 2 | 3 | https://defman.me/schemes/materia/ 4 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-mocha-dark.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-mocha.dark.256.xresources 2 | # Base16 Mocha 3 | # Scheme: Chris Kempson (http://chriskempson.com) 4 | foreground=#d0c8c6 5 | background=#3B3228 6 | cursor=#d0c8c6 7 | 8 | color0=#3B3228 9 | color1=#cb6077 10 | color2=#beb55b 11 | color3=#f4bc87 12 | color4=#8ab3b5 13 | color5=#a89bb9 14 | color6=#7bbda4 15 | color7=#d0c8c6 16 | color8=#7e705a 17 | color9=#cb6077 18 | color10=#beb55b 19 | color11=#f4bc87 20 | color12=#8ab3b5 21 | color13=#a89bb9 22 | color14=#7bbda4 23 | color15=#f5eeeb 24 | 25 | color16=#d28b71 26 | color17=#bb9584 27 | color18=#534636 28 | color19=#645240 29 | color20=#b8afad 30 | color21=#e9e1dd 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-mocha-light.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-mocha.light.256.xresources 2 | # Base16 Mocha 3 | # Scheme: Chris Kempson (http://chriskempson.com) 4 | foreground=#645240 5 | background=#f5eeeb 6 | cursor=#645240 7 | 8 | color0=#3B3228 9 | color1=#cb6077 10 | color2=#beb55b 11 | color3=#f4bc87 12 | color4=#8ab3b5 13 | color5=#a89bb9 14 | color6=#7bbda4 15 | color7=#d0c8c6 16 | color8=#7e705a 17 | color9=#cb6077 18 | color10=#beb55b 19 | color11=#f4bc87 20 | color12=#8ab3b5 21 | color13=#a89bb9 22 | color14=#7bbda4 23 | color15=#f5eeeb 24 | 25 | color16=#d28b71 26 | color17=#bb9584 27 | color18=#534636 28 | color19=#645240 29 | color20=#b8afad 30 | color21=#e9e1dd 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-monokai-dark.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/xresources/base16-monokai-256.Xresources 2 | foreground= #f8f8f2 3 | background= #272822 4 | cursor= #f8f8f2 5 | 6 | color0= #272822 7 | color1= #f92672 8 | color2= #a6e22e 9 | color3= #f4bf75 10 | color4= #66d9ef 11 | color5= #ae81ff 12 | color6= #a1efe4 13 | color7= #f8f8f2 14 | 15 | color8= #75715e 16 | color9= #f92672 17 | color10= #a6e22e 18 | color11= #f4bf75 19 | color12= #66d9ef 20 | color13= #ae81ff 21 | color14= #a1efe4 22 | color15= #f9f8f5 23 | 24 | color16= #fd971f 25 | color17= #cc6633 26 | color18= #383830 27 | color19= #49483e 28 | color20= #a59f85 29 | color21= #f5f4f1 30 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-monokai-light.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-monokai.light.256.xresources 2 | # Base16 Monokai 3 | # Scheme: Wimer Hazenberg (http://www.monokai.nl) 4 | foreground=#49483e 5 | background=#f9f8f5 6 | cursor=#49483e 7 | 8 | color0=#272822 9 | color1=#f92672 10 | color2=#a6e22e 11 | color3=#f4bf75 12 | color4=#66d9ef 13 | color5=#ae81ff 14 | color6=#a1efe4 15 | color7=#f8f8f2 16 | color8=#75715e 17 | color9=#f92672 18 | color10=#a6e22e 19 | color11=#f4bf75 20 | color12=#66d9ef 21 | color13=#ae81ff 22 | color14=#a1efe4 23 | color15=#f9f8f5 24 | 25 | color16=#fd971f 26 | color17=#cc6633 27 | color18=#383830 28 | color19=#49483e 29 | color20=#a59f85 30 | color21=#f5f4f1 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-ocean-dark.properties: -------------------------------------------------------------------------------- 1 | foreground= #c0c5ce 2 | background= #2b303b 3 | cursor= #c0c5ce 4 | 5 | color0= #2b303b 6 | color1= #bf616a 7 | color2= #a3be8c 8 | color3= #ebcb8b 9 | color4= #8fa1b3 10 | color5= #b48ead 11 | color6= #96b5b4 12 | color7= #c0c5ce 13 | 14 | color8= #65737e 15 | color9= #bf616a 16 | color10= #a3be8c 17 | color11= #ebcb8b 18 | color12= #8fa1b3 19 | color13= #b48ead 20 | color14= #96b5b4 21 | color15= #eff1f5 22 | 23 | color16= #d08770 24 | color17= #ab7967 25 | color18= #343d46 26 | color19= #4f5b66 27 | color20= #a7adba 28 | color21= #dfe1e8 -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-ocean-light.properties: -------------------------------------------------------------------------------- 1 | foreground: #4f5b66 2 | background: #eff1f5 3 | cursor: #4f5b66 4 | 5 | color0: #2b303b 6 | color1: #bf616a 7 | color2: #a3be8c 8 | color3: #ebcb8b 9 | color4: #8fa1b3 10 | color5: #b48ead 11 | color6: #96b5b4 12 | color7: #c0c5ce 13 | 14 | color8: #65737e 15 | color9: #bf616a 16 | color10: #a3be8c 17 | color11: #ebcb8b 18 | color12: #8fa1b3 19 | color13: #b48ead 20 | color14: #96b5b4 21 | color15: #eff1f5 22 | 23 | ! Note: colors beyond 15 might not be loaded (e.g., xterm, urxvt), 24 | ! use 'shell' template to set these if necessary 25 | color16: #d08770 26 | color17: #ab7967 27 | color18: #343d46 28 | color19: #4f5b66 29 | color20: #a7adba 30 | color21: #dfe1e8 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-one-dark.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/aaron-williamson/base16-alacritty/blob/master/colors/base16-onedark-256.yml 2 | # Base16 One dark 3 | # Daniel Pfeifer (http://github.com/purpleKarrot) 4 | foreground=#abb2bf 5 | background=#282c34 6 | cursor=#abb2bf 7 | 8 | color0=#282c34 9 | color1=#e06c75 10 | color2=#98c379 11 | color3=#e5c07b 12 | color4=#61afef 13 | color5=#c678dd 14 | color6=#56b6c2 15 | color7=#abb2bf 16 | 17 | color8=#545862 18 | color9=#e06c75 19 | color10=#98c379 20 | color11=#e5c07b 21 | color12=#61afef 22 | color13=#c678dd 23 | color14=#56b6c2 24 | color15=#c8ccd4 25 | 26 | color16=#d19a66 27 | color17=#be5046 28 | color18=#353b45 29 | color19=#3e4451 30 | color20=#565c64 31 | color21=#b6bdca 32 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-one-light.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/aaron-williamson/base16-alacritty/blob/master/colors/base16-one-light-256.yml 2 | # Base16 One light 3 | # Daniel Pfeifer (http://github.com/purpleKarrot) 4 | foreground=#383a42 5 | background=#fafafa 6 | cursor=#383a42 7 | 8 | color0=#fafafa 9 | color1=#ca1243 10 | color2=#50a14f 11 | color3=#c18401 12 | color4=#4078f2 13 | color5=#a626a4 14 | color6=#0184bc 15 | color7=#383a42 16 | 17 | color8=#a0a1a7 18 | color9=#ca1243 19 | color10=#50a14f 20 | color11=#c18401 21 | color12=#4078f2 22 | color13=#a626a4 23 | color14=#0184bc 24 | color15=#090a0b 25 | 26 | color16=#d75f00 27 | color17=#986801 28 | color18=#f0f0f1 29 | color19=#e5e5e6 30 | color20=#696c77 31 | color21=#202227 32 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-paraiso-dark.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-paraiso.dark.256.xresources 2 | # Base16 Paraiso 3 | # Scheme: Jan T. Sott 4 | foreground=#a39e9b 5 | background=#2f1e2e 6 | cursor=#a39e9b 7 | 8 | color0=#2f1e2e 9 | color1=#ef6155 10 | color2=#48b685 11 | color3=#fec418 12 | color4=#06b6ef 13 | color5=#815ba4 14 | color6=#5bc4bf 15 | color7=#a39e9b 16 | color8=#776e71 17 | color9=#ef6155 18 | color10=#48b685 19 | color11=#fec418 20 | color12=#06b6ef 21 | color13=#815ba4 22 | color14=#5bc4bf 23 | color15=#e7e9db 24 | 25 | color16=#f99b15 26 | color17=#e96ba8 27 | color18=#41323f 28 | color19=#4f424c 29 | color20=#8d8687 30 | color21=#b9b6b0 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-paraiso-light.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-paraiso.light.256.xresources 2 | # Base16 Paraiso 3 | # Scheme: Jan T. Sott 4 | foreground=#4f424c 5 | background=#e7e9db 6 | cursor=#4f424c 7 | 8 | color0=#2f1e2e 9 | color1=#ef6155 10 | color2=#48b685 11 | color3=#fec418 12 | color4=#06b6ef 13 | color5=#815ba4 14 | color6=#5bc4bf 15 | color7=#a39e9b 16 | color8=#776e71 17 | color9=#ef6155 18 | color10=#48b685 19 | color11=#fec418 20 | color12=#06b6ef 21 | color13=#815ba4 22 | color14=#5bc4bf 23 | color15=#e7e9db 24 | 25 | color16=#f99b15 26 | color17=#e96ba8 27 | color18=#41323f 28 | color19=#4f424c 29 | color20=#8d8687 30 | color21=#b9b6b0 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-railscasts-dark.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-railscasts.dark.256.xresources 2 | # Base16 Railscasts 3 | # Scheme: Ryan Bates (http://railscasts.com) 4 | foreground=#e6e1dc 5 | background=#2b2b2b 6 | cursor=#e6e1dc 7 | 8 | color0=#2b2b2b 9 | color1=#da4939 10 | color2=#a5c261 11 | color3=#ffc66d 12 | color4=#6d9cbe 13 | color5=#b6b3eb 14 | color6=#519f50 15 | color7=#e6e1dc 16 | color8=#5a647e 17 | color9=#da4939 18 | color10=#a5c261 19 | color11=#ffc66d 20 | color12=#6d9cbe 21 | color13=#b6b3eb 22 | color14=#519f50 23 | color15=#f9f7f3 24 | 25 | color16=#cc7833 26 | color17=#bc9458 27 | color18=#272935 28 | color19=#3a4055 29 | color20=#d4cfc9 30 | color21=#f4f1ed 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-railscasts-light.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-railscasts.light.256.xresources 2 | # Base16 Railscasts 3 | # Scheme: Ryan Bates (http://railscasts.com) 4 | foreground=#3a4055 5 | background=#f9f7f3 6 | cursor=#3a4055 7 | 8 | color0=#2b2b2b 9 | color1=#da4939 10 | color2=#a5c261 11 | color3=#ffc66d 12 | color4=#6d9cbe 13 | color5=#b6b3eb 14 | color6=#519f50 15 | color7=#e6e1dc 16 | color8=#5a647e 17 | color9=#da4939 18 | color10=#a5c261 19 | color11=#ffc66d 20 | color12=#6d9cbe 21 | color13=#b6b3eb 22 | color14=#519f50 23 | color15=#f9f7f3 24 | 25 | color16=#cc7833 26 | color17=#bc9458 27 | color18=#272935 28 | color19=#3a4055 29 | color20=#d4cfc9 30 | color21=#f4f1ed 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-shapeshifter-dark.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-shapeshifter.dark.256.xresources 2 | # Base16 shapeshifter 3 | # Scheme: Tyler Benziger (http://tybenz.com) 4 | foreground=#ababab 5 | background=#000000 6 | cursor=#ababab 7 | 8 | color0=#000000 9 | color1=#e92f2f 10 | color2=#0ed839 11 | color3=#dddd13 12 | color4=#3b48e3 13 | color5=#f996e2 14 | color6=#23edda 15 | color7=#ababab 16 | color8=#343434 17 | color9=#e92f2f 18 | color10=#0ed839 19 | color11=#dddd13 20 | color12=#3b48e3 21 | color13=#f996e2 22 | color14=#23edda 23 | color15=#f9f9f9 24 | 25 | color16=#e09448 26 | color17=#69542d 27 | color18=#040404 28 | color19=#102015 29 | color20=#555555 30 | color21=#e0e0e0 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-shapeshifter-light.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-shapeshifter.light.256.xresources 2 | # Base16 shapeshifter 3 | # Scheme: Tyler Benziger (http://tybenz.com) 4 | foreground=#102015 5 | background=#f9f9f9 6 | cursor=#102015 7 | 8 | color0=#000000 9 | color1=#e92f2f 10 | color2=#0ed839 11 | color3=#dddd13 12 | color4=#3b48e3 13 | color5=#f996e2 14 | color6=#23edda 15 | color7=#ababab 16 | color8=#343434 17 | color9=#e92f2f 18 | color10=#0ed839 19 | color11=#dddd13 20 | color12=#3b48e3 21 | color13=#f996e2 22 | color14=#23edda 23 | color15=#f9f9f9 24 | 25 | color16=#e09448 26 | color17=#69542d 27 | color18=#040404 28 | color19=#102015 29 | color20=#555555 30 | color21=#e0e0e0 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-snazzy.properties: -------------------------------------------------------------------------------- 1 | # Base16 Snazzy 2 | # Based on https://github.com/aaron-williamson/base16-alacritty/blob/025688c7158eb8a3421cb2b3612e77915dce8c2a/colors/base16-snazzy-256.yml 3 | foreground=#e2e4e5 4 | background=#282a36 5 | cursor=#e2e4e5 6 | 7 | color0=#282a36 8 | color1=#ff5c57 9 | color2=#5af78e 10 | color3=#f3f99d 11 | color4=#57c7ff 12 | color5=#ff6ac1 13 | color6=#9aedfe 14 | color7=#e2e4e5 15 | 16 | color8=#78787e 17 | color9=#ff5c57 18 | color10=#5af78e 19 | color11=#f3f99d 20 | color12=#57c7ff 21 | color13=#ff6ac1 22 | color14=#9aedfe 23 | color15=#f1f1f0 24 | 25 | color16=#ff9f43 26 | color17=#b2643c 27 | color18=#34353e 28 | color19=#43454f 29 | color20=#a5a5a9 30 | color21=#eff0eb 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-solarized-dark.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-solarized.dark.xresources 2 | # Base16 Solarized 3 | # Scheme: Ethan Schoonover (http=//ethanschoonover.com/solarized) 4 | background=#002b36 5 | foreground=#93a1a1 6 | cursor=#93a1a1 7 | 8 | color0=#002b36 9 | color1=#dc322f 10 | color2=#859900 11 | color3=#b58900 12 | color4=#268bd2 13 | color5=#6c71c4 14 | color6=#2aa198 15 | color7=#93a1a1 16 | color8=#657b83 17 | color9=#dc322f 18 | color10=#859900 19 | color11=#b58900 20 | color12=#268bd2 21 | color13=#6c71c4 22 | color14=#2aa198 23 | color15=#fdf6e3 24 | 25 | color16=#cb4b16 26 | color17=#d33682 27 | color18=#073642 28 | color19=#586e75 29 | color20=#839496 30 | color21=#eee8d5 31 | 32 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-solarized-light.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-solarized.light.xresources 2 | # Base16 Solarized 3 | # Scheme: Ethan Schoonover (http://ethanschoonover.com/solarized) 4 | foreground=#586e75 5 | background=#fdf6e3 6 | cursor=#586e75 7 | 8 | color0=#002b36 9 | color1=#dc322f 10 | color2=#859900 11 | color3=#b58900 12 | color4=#268bd2 13 | color5=#6c71c4 14 | color6=#2aa198 15 | color7=#93a1a1 16 | color8=#657b83 17 | color9=#cb4b16 18 | color10=#073642 19 | color11=#586e75 20 | color12=#839496 21 | color13=#eee8d5 22 | color14=#d33682 23 | color15=#fdf6e3 24 | 25 | color16=#cb4b16 26 | color17=#d33682 27 | color18=#073642 28 | color19=#586e75 29 | color20=#839496 30 | color21=#eee8d5 31 | 32 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-summerfruit-dark.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-summerfruit.dark.256.xresources 2 | # Base16 Summerfruit 3 | # Scheme: Christopher Corley (http://cscorley.github.io/) 4 | foreground=#D0D0D0 5 | background=#151515 6 | cursor=#D0D0D0 7 | 8 | color0=#151515 9 | color1=#FF0086 10 | color2=#00C918 11 | color3=#ABA800 12 | color4=#3777E6 13 | color5=#AD00A1 14 | color6=#1faaaa 15 | color7=#D0D0D0 16 | color8=#505050 17 | color9=#FF0086 18 | color10=#00C918 19 | color11=#ABA800 20 | color12=#3777E6 21 | color13=#AD00A1 22 | color14=#1faaaa 23 | color15=#FFFFFF 24 | 25 | color16=#FD8900 26 | color17=#cc6633 27 | color18=#202020 28 | color19=#303030 29 | color20=#B0B0B0 30 | color21=#E0E0E0 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-summerfruit-light.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-summerfruit.light.256.xresources 2 | # Base16 Summerfruit 3 | # Scheme: Christopher Corley (http://cscorley.github.io/) 4 | foreground=#303030 5 | background=#FFFFFF 6 | cursor=#303030 7 | 8 | color0=#151515 9 | color1=#FF0086 10 | color2=#00C918 11 | color3=#ABA800 12 | color4=#3777E6 13 | color5=#AD00A1 14 | color6=#1faaaa 15 | color7=#D0D0D0 16 | color8=#505050 17 | color9=#FF0086 18 | color10=#00C918 19 | color11=#ABA800 20 | color12=#3777E6 21 | color13=#AD00A1 22 | color14=#1faaaa 23 | color15=#FFFFFF 24 | 25 | color16=#FD8900 26 | color17=#cc6633 27 | color18=#202020 28 | color19=#303030 29 | color20=#B0B0B0 30 | color21=#E0E0E0 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-tomorrow-dark.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-tomorrow.dark.256.xresources 2 | # Base16 Tomorrow 3 | # Scheme: Chris Kempson (http://chriskempson.com) 4 | foreground=#c5c8c6 5 | background=#1d1f21 6 | cursor=#c5c8c6 7 | 8 | color0=#1d1f21 9 | color1=#cc6666 10 | color2=#b5bd68 11 | color3=#f0c674 12 | color4=#81a2be 13 | color5=#b294bb 14 | color6=#8abeb7 15 | color7=#c5c8c6 16 | color8=#969896 17 | color9=#cc6666 18 | color10=#b5bd68 19 | color11=#f0c674 20 | color12=#81a2be 21 | color13=#b294bb 22 | color14=#8abeb7 23 | color15=#ffffff 24 | 25 | color16=#de935f 26 | color17=#a3685a 27 | color18=#282a2e 28 | color19=#373b41 29 | color20=#b4b7b4 30 | color21=#e0e0e0 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-tomorrow-light.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-tomorrow.light.256.xresources 2 | # Base16 Tomorrow 3 | # Scheme: Chris Kempson (http://chriskempson.com) 4 | foreground=#373b41 5 | background=#ffffff 6 | cursor=#373b41 7 | 8 | color0=#1d1f21 9 | color1=#cc6666 10 | color2=#b5bd68 11 | color3=#f0c674 12 | color4=#81a2be 13 | color5=#b294bb 14 | color6=#8abeb7 15 | color7=#c5c8c6 16 | color8=#969896 17 | color9=#cc6666 18 | color10=#b5bd68 19 | color11=#f0c674 20 | color12=#81a2be 21 | color13=#b294bb 22 | color14=#8abeb7 23 | color15=#ffffff 24 | 25 | color16=#de935f 26 | color17=#a3685a 27 | color18=#282a2e 28 | color19=#373b41 29 | color20=#b4b7b4 30 | color21=#e0e0e0 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-twilight-dark.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-twilight.dark.256.xresources 2 | # Base16 Twilight 3 | # Scheme: David Hart (http://hart-dev.com) 4 | foreground=#a7a7a7 5 | background=#1e1e1e 6 | cursor=#a7a7a7 7 | 8 | color0=#1e1e1e 9 | color1=#cf6a4c 10 | color2=#8f9d6a 11 | color3=#f9ee98 12 | color4=#7587a6 13 | color5=#9b859d 14 | color6=#afc4db 15 | color7=#a7a7a7 16 | color8=#5f5a60 17 | color9=#cf6a4c 18 | color10=#8f9d6a 19 | color11=#f9ee98 20 | color12=#7587a6 21 | color13=#9b859d 22 | color14=#afc4db 23 | color15=#ffffff 24 | 25 | color16=#cda869 26 | color17=#9b703f 27 | color18=#323537 28 | color19=#464b50 29 | color20=#838184 30 | color21=#c3c3c3 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/base16-twilight-light.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/chriskempson/base16-xresources/blob/master/base16-twilight.light.256.xresources 2 | # Base16 Twilight 3 | # Scheme: David Hart (http://hart-dev.com) 4 | foreground=#464b50 5 | background=#ffffff 6 | cursor=#464b50 7 | 8 | color0=#1e1e1e 9 | color1=#cf6a4c 10 | color2=#8f9d6a 11 | color3=#f9ee98 12 | color4=#7587a6 13 | color5=#9b859d 14 | color6=#afc4db 15 | color7=#a7a7a7 16 | color8=#5f5a60 17 | color9=#cf6a4c 18 | color10=#8f9d6a 19 | color11=#f9ee98 20 | color12=#7587a6 21 | color13=#9b859d 22 | color14=#afc4db 23 | color15=#ffffff 24 | 25 | color16=#cda869 26 | color17=#9b703f 27 | color18=#323537 28 | color19=#464b50 29 | color20=#838184 30 | color21=#c3c3c3 31 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/black-on-white.properties: -------------------------------------------------------------------------------- 1 | background: #FFFFFF 2 | foreground: #000000 3 | 4 | color0:#000000 5 | color1:#000000 6 | color2:#000000 7 | color3:#000000 8 | color4:#000000 9 | color5:#000000 10 | color6:#000000 11 | color7:#000000 12 | color8:#000000 13 | color9:#000000 14 | color10:#000000 15 | color11:#000000 16 | color12:#000000 17 | color13:#000000 18 | color14:#000000 19 | color15:#000000 20 | color16:#000000 21 | color17:#000000 22 | color18:#000000 23 | color19:#000000 24 | color20:#000000 25 | color21:#000000 26 | color22:#000000 27 | color23:#000000 28 | color24:#000000 29 | color25:#000000 30 | color26:#000000 31 | color27:#000000 32 | color28:#000000 33 | color29:#000000 34 | color30:#000000 35 | color31:#000000 36 | color32:#000000 37 | color33:#000000 38 | color34:#000000 39 | color35:#000000 40 | color36:#000000 41 | color37:#000000 42 | color38:#000000 43 | color39:#000000 44 | color40:#000000 45 | color41:#000000 46 | color42:#000000 47 | color43:#000000 48 | color44:#000000 49 | color45:#000000 50 | color46:#000000 51 | color47:#000000 52 | color48:#000000 53 | color49:#000000 54 | color50:#000000 55 | color51:#000000 56 | color52:#000000 57 | color53:#000000 58 | color54:#000000 59 | color55:#000000 60 | color56:#000000 61 | color57:#000000 62 | color58:#000000 63 | color59:#000000 64 | color60:#000000 65 | color61:#000000 66 | color62:#000000 67 | color63:#000000 68 | color64:#000000 69 | color65:#000000 70 | color66:#000000 71 | color67:#000000 72 | color68:#000000 73 | color69:#000000 74 | color70:#000000 75 | color71:#000000 76 | color72:#000000 77 | color73:#000000 78 | color74:#000000 79 | color75:#000000 80 | color76:#000000 81 | color77:#000000 82 | color78:#000000 83 | color79:#000000 84 | color80:#000000 85 | color81:#000000 86 | color82:#000000 87 | color83:#000000 88 | color84:#000000 89 | color85:#000000 90 | color86:#000000 91 | color87:#000000 92 | color88:#000000 93 | color89:#000000 94 | color90:#000000 95 | color91:#000000 96 | color92:#000000 97 | color93:#000000 98 | color94:#000000 99 | color95:#000000 100 | color96:#000000 101 | color97:#000000 102 | color98:#000000 103 | color99:#000000 104 | color100:#000000 105 | color101:#000000 106 | color102:#000000 107 | color103:#000000 108 | color104:#000000 109 | color105:#000000 110 | color106:#000000 111 | color107:#000000 112 | color108:#000000 113 | color109:#000000 114 | color110:#000000 115 | color111:#000000 116 | color112:#000000 117 | color113:#000000 118 | color114:#000000 119 | color115:#000000 120 | color116:#000000 121 | color117:#000000 122 | color118:#000000 123 | color119:#000000 124 | color120:#000000 125 | color121:#000000 126 | color122:#000000 127 | color123:#000000 128 | color124:#000000 129 | color125:#000000 130 | color126:#000000 131 | color127:#000000 132 | color128:#000000 133 | color129:#000000 134 | color130:#000000 135 | color131:#000000 136 | color132:#000000 137 | color133:#000000 138 | color134:#000000 139 | color135:#000000 140 | color136:#000000 141 | color137:#000000 142 | color138:#000000 143 | color139:#000000 144 | color140:#000000 145 | color141:#000000 146 | color142:#000000 147 | color143:#000000 148 | color144:#000000 149 | color145:#000000 150 | color146:#000000 151 | color147:#000000 152 | color148:#000000 153 | color149:#000000 154 | color150:#000000 155 | color151:#000000 156 | color152:#000000 157 | color153:#000000 158 | color154:#000000 159 | color155:#000000 160 | color156:#000000 161 | color157:#000000 162 | color158:#000000 163 | color159:#000000 164 | color160:#000000 165 | color161:#000000 166 | color162:#000000 167 | color163:#000000 168 | color164:#000000 169 | color165:#000000 170 | color166:#000000 171 | color167:#000000 172 | color168:#000000 173 | color169:#000000 174 | color170:#000000 175 | color171:#000000 176 | color172:#000000 177 | color173:#000000 178 | color174:#000000 179 | color175:#000000 180 | color176:#000000 181 | color177:#000000 182 | color178:#000000 183 | color179:#000000 184 | color180:#000000 185 | color181:#000000 186 | color182:#000000 187 | color183:#000000 188 | color184:#000000 189 | color185:#000000 190 | color186:#000000 191 | color187:#000000 192 | color188:#000000 193 | color189:#000000 194 | color190:#000000 195 | color191:#000000 196 | color192:#000000 197 | color193:#000000 198 | color194:#000000 199 | color195:#000000 200 | color196:#000000 201 | color197:#000000 202 | color198:#000000 203 | color199:#000000 204 | color200:#000000 205 | color201:#000000 206 | color202:#000000 207 | color203:#000000 208 | color204:#000000 209 | color205:#000000 210 | color206:#000000 211 | color207:#000000 212 | color208:#000000 213 | color209:#000000 214 | color210:#000000 215 | color211:#000000 216 | color212:#000000 217 | color213:#000000 218 | color214:#000000 219 | color215:#000000 220 | color216:#000000 221 | color217:#000000 222 | color218:#000000 223 | color219:#000000 224 | color220:#000000 225 | color221:#000000 226 | color222:#000000 227 | color223:#000000 228 | color224:#000000 229 | color225:#000000 230 | color226:#000000 231 | color227:#000000 232 | color228:#000000 233 | color229:#000000 234 | color230:#000000 235 | color231:#000000 236 | color232:#000000 237 | color233:#000000 238 | color234:#000000 239 | color235:#000000 240 | color236:#000000 241 | color237:#000000 242 | color238:#000000 243 | color239:#000000 244 | color240:#000000 245 | color241:#000000 246 | color242:#000000 247 | color243:#000000 248 | color244:#000000 249 | color245:#000000 250 | color246:#000000 251 | color247:#000000 252 | color248:#000000 253 | color249:#000000 254 | color250:#000000 255 | color251:#000000 256 | color252:#000000 257 | color253:#000000 258 | color254:#000000 259 | color255:#000000 260 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/catppuccin-frappe.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/catppuccin/catppuccin 2 | foreground=#c6d0f5 3 | background=#303446 4 | cursor=#f2d5cf 5 | 6 | color0=#51576d 7 | color1=#e78284 8 | color2=#a6d189 9 | color3=#e5c890 10 | color4=#8caaee 11 | color5=#f4b8e4 12 | color6=#81c8be 13 | color7=#b5bfe2 14 | 15 | color8=#626880 16 | color9=#e78284 17 | color10=#a6d189 18 | color11=#e5c890 19 | color12=#8caaee 20 | color13=#f4b8e4 21 | color14=#81c8be 22 | color15=#a5adce 23 | 24 | color16=#ef9f76 25 | color17=#f2d5cf 26 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/catppuccin-frappe.txt: -------------------------------------------------------------------------------- 1 | catppuccin.txt -------------------------------------------------------------------------------- /app/src/main/assets/colors/catppuccin-latte.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/catppuccin/catppuccin 2 | foreground=#4c4f69 3 | background=#eff1f5 4 | cursor=#dc8a78 5 | 6 | color0=#5c5f77 7 | color1=#d20f39 8 | color2=#40a02b 9 | color3=#df8e1d 10 | color4=#1e66f5 11 | color5=#ea76cb 12 | color6=#179299 13 | color7=#acb0be 14 | 15 | color8=#acb0be 16 | color9=#d20f39 17 | color10=#40a02b 18 | color11=#df8e1d 19 | color12=#1e66f5 20 | color13=#ea76cb 21 | color14=#179299 22 | color15=#bcc0cc 23 | 24 | color16=#fe640b 25 | color17=#dc8a78 26 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/catppuccin-latte.txt: -------------------------------------------------------------------------------- 1 | catppuccin.txt -------------------------------------------------------------------------------- /app/src/main/assets/colors/catppuccin-macchiato.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/catppuccin/catppuccin 2 | foreground=#cad3f5 3 | background=#24273a 4 | cursor=#f4dbd6 5 | 6 | color0=#494d64 7 | color1=#ed8796 8 | color2=#a6da95 9 | color3=#eed49f 10 | color4=#8aadf4 11 | color5=#f5bde6 12 | color6=#8bd5ca 13 | color7=#b8c0e0 14 | 15 | color8=#5b6078 16 | color9=#ed8796 17 | color10=#a6da95 18 | color11=#eed49f 19 | color12=#8aadf4 20 | color13=#f5bde6 21 | color14=#8bd5ca 22 | color15=#a5adcb 23 | 24 | color16=#f5a97f 25 | color17=#f4dbd6 26 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/catppuccin-macchiato.txt: -------------------------------------------------------------------------------- 1 | catppuccin.txt -------------------------------------------------------------------------------- /app/src/main/assets/colors/catppuccin-mocha.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/catppuccin/catppuccin 2 | foreground=#cdd6f4 3 | background=#1e1e2e 4 | cursor=#f5e0dc 5 | 6 | color0=#45475a 7 | color1=#f38ba8 8 | color2=#a6e3a1 9 | color3=#f9e2af 10 | color4=#89b4fa 11 | color5=#f5c2e7 12 | color6=#94e2d5 13 | color7=#bac2de 14 | 15 | color8=#585b70 16 | color9=#f38ba8 17 | color10=#a6e3a1 18 | color11=#f9e2af 19 | color12=#89b4fa 20 | color13=#f5c2e7 21 | color14=#94e2d5 22 | color15=#a6adc8 23 | 24 | color16=#fab387 25 | color17=#f5e0dc 26 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/catppuccin-mocha.txt: -------------------------------------------------------------------------------- 1 | catppuccin.txt -------------------------------------------------------------------------------- /app/src/main/assets/colors/catppuccin.txt: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Catppuccin 4 | - https://github.com/catppuccin/catppuccin 5 | 6 | Permission is hereby granted, free of charge, to any person obtaining a copy 7 | of this software and associated documentation files (the "Software"), to deal 8 | in the Software without restriction, including without limitation the rights 9 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | copies of the Software, and to permit persons to whom the Software is 11 | furnished to do so, subject to the following conditions: 12 | 13 | The above copyright notice and this permission notice shall be included in all 14 | copies or substantial portions of the Software. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | SOFTWARE. 23 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/dracula.properties: -------------------------------------------------------------------------------- 1 | # https://draculatheme.com/ 2 | # https://github.com/dracula/xresources/blob/master/Xresources 3 | # special 4 | foreground=#f8f8f2 5 | cursor=#f8f8f2 6 | background=#282a36 7 | # black 8 | color0=#000000 9 | color8=#4d4d4d 10 | # red 11 | color1=#ff5555 12 | color9=#ff6e67 13 | # green 14 | color2=#50fa7b 15 | color10=#5af78e 16 | # yellow 17 | color3=#f1fa8c 18 | color11=#f4f99d 19 | # blue 20 | color4=#bd93f9 21 | color12=#caa9fa 22 | # magenta 23 | color5=#ff79c6 24 | color13=#ff92d0 25 | # cyan 26 | color6=#8be9fd 27 | color14=#9aedfe 28 | # white 29 | color7=#bfbfbf 30 | color15=#e6e6e6 31 | 32 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/e-ink-color.properties: -------------------------------------------------------------------------------- 1 | background=#ffffff 2 | foreground=#000000 3 | cursor=#c0c0c0 4 | 5 | color0=#000000 6 | color1=#800000 7 | color2=#008000 8 | color3=#808000 9 | color4=#000080 10 | color5=#800080 11 | color6=#008080 12 | color7=#c0c0c0 13 | 14 | color8=#808080 15 | color9=#ff0000 16 | color10=#00ff00 17 | color11=#ffff00 18 | color12=#0000ff 19 | color13=#ff00ff 20 | color14=#00ffff 21 | color15=#ffffff 22 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/e-ink.properties: -------------------------------------------------------------------------------- 1 | background: #FFFFFF 2 | foreground: #000000 3 | cursor=#c0c0c0 4 | 5 | color0=#101010 6 | color1=#7c7c7c 7 | color2=#8e8e8e 8 | color3=#a0a0a0 9 | color4=#686868 10 | color5=#747474 11 | color6=#868686 12 | color7=#b9b9b9 13 | color8=#525252 14 | color9=#7c7c7c 15 | color10=#8e8e8e 16 | color11=#a0a0a0 17 | color12=#686868 18 | color13=#747474 19 | color14=#868686 20 | color15=#f7f7f7 21 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/gnometerm-new.properties: -------------------------------------------------------------------------------- 1 | # Gnome terminal 42 coloscheme 2 | # https://github.com/termux/termux-styling/issues/164 3 | 4 | color0: #171421 5 | color1: #c01c28 6 | color2: #26a269 7 | color3: #a2734c 8 | color4: #12488b 9 | color5: #a347ba 10 | color6: #2aa1b3 11 | color7: #d0cfcc 12 | color8: #5e5c64 13 | color9: #f66151 14 | color10: #33d17a 15 | color11: #e9ad0c 16 | color12: #2a7bde 17 | color13: #c061cb 18 | color14: #33c7de 19 | color15: #ffffff 20 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/gnometerm.properties: -------------------------------------------------------------------------------- 1 | # http://www.xcolors.net/dl/gnometerm 2 | 3 | # Black 4 | color0: #000000 5 | color8: #555753 6 | 7 | # Red 8 | color1: #cc0000 9 | color9: #ef2929 10 | 11 | # Green 12 | color2: #4e9a06 13 | color10: #8ae234 14 | 15 | # Yellow 16 | color3: #c4a000 17 | color11: #fce94f 18 | 19 | # Blue 20 | color4: #3465a4 21 | color12: #729fcf 22 | 23 | # Magenta 24 | color5: #75507b 25 | color13: #ad7fa8 26 | 27 | # Cyan 28 | color6: #06989a 29 | color14: #34e2e2 30 | 31 | # White 32 | color7: #d3d7cf 33 | color15: #eeeeec 34 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/gotham.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/whatyouhide/gotham-contrib/blob/master/xresources/gotham 2 | foreground: #98d1ce 3 | background: #0a0f14 4 | cursor: #98d1ce 5 | 6 | color0: #0a0f14 7 | color8: #10151b 8 | 9 | color1: #c33027 10 | color9: #d26939 11 | 12 | color2: #26a98b 13 | color10: #081f2d 14 | 15 | color3: #edb54b 16 | color11: #245361 17 | 18 | color4: #195465 19 | color12: #093748 20 | 21 | color5: #4e5165 22 | color13: #888ba5 23 | 24 | color6: #33859d 25 | color14: #599caa 26 | 27 | color7: #98d1ce 28 | color15: #d3ebe9 29 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/gruvbox-dark.properties: -------------------------------------------------------------------------------- 1 | ! ----------------------------------------------------------------------------- 2 | ! File: gruvbox-dark.xresources 3 | ! Description: Retro groove colorscheme generalized 4 | ! Author: morhetz 5 | ! Source: https://github.com/morhetz/gruvbox-generalized 6 | ! Last Modified: 6 Sep 2014 7 | ! ----------------------------------------------------------------------------- 8 | 9 | ! hard contrast: background: #1d2021 10 | background: #1d2021 11 | ! background: #282828 12 | ! soft contrast: background: #32302f 13 | foreground: #ebdbb2 14 | ! Black + DarkGrey 15 | color0: #282828 16 | color8: #928374 17 | ! DarkRed + Red 18 | color1: #cc241d 19 | color9: #fb4934 20 | ! DarkGreen + Green 21 | color2: #98971a 22 | color10: #b8bb26 23 | ! DarkYellow + Yellow 24 | color3: #d79921 25 | color11: #fabd2f 26 | ! DarkBlue + Blue 27 | color4: #458588 28 | color12: #83a598 29 | ! DarkMagenta + Magenta 30 | color5: #b16286 31 | color13: #d3869b 32 | ! DarkCyan + Cyan 33 | color6: #689d6a 34 | color14: #8ec07c 35 | ! LightGrey + White 36 | color7: #a89984 37 | color15: #ebdbb2 -------------------------------------------------------------------------------- /app/src/main/assets/colors/gruvbox-light.properties: -------------------------------------------------------------------------------- 1 | ! ----------------------------------------------------------------------------- 2 | ! File: gruvbox-light.xresources 3 | ! Description: Retro groove colorscheme generalized 4 | ! Author: morhetz 5 | ! Source: https://github.com/morhetz/gruvbox-generalized 6 | ! Last Modified: 6 Sep 2014 7 | ! ----------------------------------------------------------------------------- 8 | 9 | ! hard contrast: background: #f9f5d7 10 | background: #f9f5d7 11 | ! background: #fbf1c7 12 | ! soft contrast: background: #f2e5bc 13 | foreground: #3c3836 14 | ! Black + DarkGrey 15 | color0: #fdf4c1 16 | color8: #928374 17 | ! DarkRed + Red 18 | color1: #cc241d 19 | color9: #9d0006 20 | ! DarkGreen + Green 21 | color2: #98971a 22 | color10: #79740e 23 | ! DarkYellow + Yellow 24 | color3: #d79921 25 | color11: #b57614 26 | ! DarkBlue + Blue 27 | color4: #458588 28 | color12: #076678 29 | ! DarkMagenta + Magenta 30 | color5: #b16286 31 | color13: #8f3f71 32 | ! DarkCyan + Cyan 33 | color6: #689d6a 34 | color14: #427b58 35 | ! LightGrey + White 36 | color7: #7c6f64 37 | color15: #3c3836 -------------------------------------------------------------------------------- /app/src/main/assets/colors/gruvbox-material-dark-hard.properties: -------------------------------------------------------------------------------- 1 | background: #1D2021 2 | foreground: #D4BE98 3 | 4 | color0: #665C54 5 | color8: #928374 6 | 7 | color1: #EA6962 8 | color9: #EA6962 9 | 10 | color2: #A9B665 11 | color10: #A9B665 12 | 13 | color3: #D8A657 14 | color11: #D8A657 15 | 16 | color4: #7DAEA3 17 | color12: #7DAEA3 18 | 19 | color5: #D3869B 20 | color13: #D3869B 21 | 22 | color6: #89B482 23 | color14: #89B482 24 | 25 | color7: #D4BE98 26 | color15: #D4BE98 27 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/gruvbox-material-dark-medium.properties: -------------------------------------------------------------------------------- 1 | background: #282828 2 | foreground: #D4BE98 3 | 4 | color0: #665C54 5 | color8: #928374 6 | 7 | color1: #EA6962 8 | color9: #EA6962 9 | 10 | color2: #A9B665 11 | color10: #A9B665 12 | 13 | color3: #D8A657 14 | color11: #D8A657 15 | 16 | color4: #7DAEA3 17 | color12: #7DAEA3 18 | 19 | color5: #D3869B 20 | color13: #D3869B 21 | 22 | color6: #89B482 23 | color14: #89B482 24 | 25 | color7: #D4BE98 26 | color15: #D4BE98 27 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/gruvbox-material-dark-soft.properties: -------------------------------------------------------------------------------- 1 | background: #32302F 2 | foreground: #D4BE98 3 | 4 | color0: #665C54 5 | color8: #928374 6 | 7 | color1: #EA6962 8 | color9: #EA6962 9 | 10 | color2: #A9B665 11 | color10: #A9B665 12 | 13 | color3: #D8A657 14 | color11: #D8A657 15 | 16 | color4: #7DAEA3 17 | color12: #7DAEA3 18 | 19 | color5: #D3869B 20 | color13: #D3869B 21 | 22 | color6: #89B482 23 | color14: #89B482 24 | 25 | color7: #D4BE98 26 | color15: #D4BE98 27 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/gruvbox-material-light-hard.properties: -------------------------------------------------------------------------------- 1 | background: #F9F5D7 2 | foreground: #654735 3 | 4 | color0: #504945 5 | color8: #504945 6 | 7 | color1: #C14A4A 8 | color9: #C14A4A 9 | 10 | color2: #6C782E 11 | color10: #6C782E 12 | 13 | color3: #B47109 14 | color11: #B47109 15 | 16 | color4: #45707A 17 | color12: #45707A 18 | 19 | color5: #945E80 20 | color13: #945E80 21 | 22 | color6: #4C7A5D 23 | color14: #4C7A5D 24 | 25 | color7: #D4BE98 26 | color15: #D4BE98 27 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/gruvbox-material-light-medium.properties: -------------------------------------------------------------------------------- 1 | background: #FBF1C7 2 | foreground: #654735 3 | 4 | color0: #504945 5 | color8: #504945 6 | 7 | color1: #C14A4A 8 | color9: #C14A4A 9 | 10 | color2: #6C782E 11 | color10: #6C782E 12 | 13 | color3: #B47109 14 | color11: #B47109 15 | 16 | color4: #45707A 17 | color12: #45707A 18 | 19 | color5: #945E80 20 | color13: #945E80 21 | 22 | color6: #4C7A5D 23 | color14: #4C7A5D 24 | 25 | color7: #D4BE98 26 | color15: #D4BE98 27 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/gruvbox-material-light-soft.properties: -------------------------------------------------------------------------------- 1 | background: #F2E5BC 2 | foreground: #654735 3 | 4 | color0: #504945 5 | color8: #504945 6 | 7 | color1: #C14A4A 8 | color9: #C14A4A 9 | 10 | color2: #6C782E 11 | color10: #6C782E 12 | 13 | color3: #B47109 14 | color11: #B47109 15 | 16 | color4: #45707A 17 | color12: #45707A 18 | 19 | color5: #945E80 20 | color13: #945E80 21 | 22 | color6: #4C7A5D 23 | color14: #4C7A5D 24 | 25 | color7: #D4BE98 26 | color15: #D4BE98 27 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/iceberg.properties: -------------------------------------------------------------------------------- 1 | # Iceberg colorscheme (https://github.com/cocopon/iceberg.vim) 2 | # Based on the Xresources file for the colorscheme at: 3 | # https://gist.github.com/cocopon/1d481941907d12db7a0df2f8806cfd41 4 | 5 | # special 6 | foreground=#c6c8d1 7 | background=#161821 8 | cursor=#c6c8d1 9 | 10 | # black 11 | color0=#161821 12 | color8=#6b7089 13 | 14 | # red 15 | color1=#e27878 16 | color9=#e98989 17 | 18 | # green 19 | color2=#b4be82 20 | color10=#c0ca8e 21 | 22 | # yellow 23 | color3=#e2a478 24 | color11=#e9b189 25 | 26 | # blue 27 | color4=#84a0c6 28 | color12=#91acd1 29 | 30 | # magenta 31 | color5=#a093c7 32 | color13=#ada0d3 33 | 34 | # cyan 35 | color6=#89b8c2 36 | color14=#95c4ce 37 | 38 | # white 39 | color7=#c6c8d1 40 | color15=#d2d4de 41 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/material.properties: -------------------------------------------------------------------------------- 1 | background : #263238 2 | foreground : #eceff1 3 | 4 | color0 : #263238 5 | color8 : #37474f 6 | color1 : #ff9800 7 | color9 : #ffa74d 8 | color2 : #8bc34a 9 | color10 : #9ccc65 10 | color3 : #ffc107 11 | color11 : #ffa000 12 | color4 : #03a9f4 13 | color12 : #81d4fa 14 | color5 : #e91e63 15 | color13 : #ad1457 16 | color6 : #009688 17 | color14 : #26a69a 18 | color7 : #cfd8dc 19 | color15 : #eceff1 20 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/nancy.properties: -------------------------------------------------------------------------------- 1 | # http://www.xcolors.net/dl/nancy 2 | 3 | foreground: #fff 4 | background: #010101 5 | cursor: #e5e5e5 6 | 7 | color0: #1b1d1e 8 | color1: #f92672 9 | color2: #82b414 10 | color3: #fd971f 11 | color4: #4e82aa 12 | color5: #8c54fe 13 | color6: #465457 14 | color7: #ccccc6 15 | color8: #505354 16 | color9: #ff5995 17 | color10: #b6e354 18 | color11: #feed6c 19 | color12: #0c73c2 20 | color13: #9e6ffe 21 | color14: #899ca1 22 | color15: #f8f8f2 23 | 24 | color16: #000000 25 | color17: #00005f 26 | color18: #000087 27 | color19: #0000af 28 | color20: #0000d7 29 | color21: #0000ff 30 | color22: #005f00 31 | color23: #005f5f 32 | color24: #005f87 33 | color25: #005faf 34 | color26: #005fd7 35 | color27: #005fff 36 | color28: #008700 37 | color29: #00875f 38 | color30: #008787 39 | color31: #0087af 40 | color32: #0087d7 41 | color33: #0087ff 42 | color34: #00af00 43 | color35: #00af5f 44 | color36: #00af87 45 | color37: #00afaf 46 | color38: #00afd7 47 | color39: #00afff 48 | color40: #00d700 49 | color41: #00d75f 50 | color42: #00d787 51 | color43: #00d7af 52 | color44: #00d7d7 53 | color45: #00d7ff 54 | color46: #00ff00 55 | color47: #00ff5f 56 | color48: #00ff87 57 | color49: #00ffaf 58 | color50: #00ffd7 59 | color51: #00ffff 60 | color52: #131324 61 | color53: #5f005f 62 | color54: #5f0087 63 | color55: #5f00af 64 | color56: #5f00d7 65 | color57: #5f00ff 66 | color58: #5f5f00 67 | color59: #5f5f5f 68 | color60: #5f5f87 69 | color61: #5f5faf 70 | color62: #5f5fd7 71 | color63: #5f5fff 72 | color64: #5f8700 73 | color65: #5f875f 74 | color66: #5f8787 75 | color67: #5f87af 76 | color68: #5f87d7 77 | color69: #5f87ff 78 | color70: #5faf00 79 | color71: #5faf5f 80 | color72: #5faf87 81 | color73: #5fafaf 82 | color74: #5fafd7 83 | color75: #5fafff 84 | color76: #5fd700 85 | color77: #5fd75f 86 | color78: #5fd787 87 | color79: #5fd7af 88 | color80: #5fd7d7 89 | color81: #5fd7ff 90 | color82: #5fff00 91 | color83: #5fff5f 92 | color84: #5fff87 93 | color85: #a03040 94 | color86: #565941 95 | color87: #594459 96 | color88: #009bff 97 | color89: #87005f 98 | color90: #870087 99 | color91: #8700af 100 | color92: #8700d7 101 | color93: #8700ff 102 | color94: #875f00 103 | color95: #875f5f 104 | color96: #875f87 105 | color97: #875faf 106 | color98: #875fd7 107 | color99: #875fff 108 | color100: #878700 109 | color101: #87875f 110 | color102: #878787 111 | color103: #8787af 112 | color104: #8787d7 113 | color105: #8787ff 114 | color106: #87af00 115 | color107: #87af5f 116 | color108: #87af87 117 | color109: #87afaf 118 | color110: #87afd7 119 | color111: #87afff 120 | color112: #87d700 121 | color113: #87d75f 122 | color114: #87d787 123 | color115: #87d7af 124 | color116: #87d7d7 125 | color117: #87d7ff 126 | color118: #87ff00 127 | color119: #87ff5f 128 | color120: #87ff87 129 | color121: #87ffaf 130 | color122: #87ffd7 131 | color123: #87ffff 132 | color124: #af0000 133 | color125: #af005f 134 | color126: #af0087 135 | color127: #af00af 136 | color128: #af00d7 137 | color129: #af00ff 138 | color130: #af5f00 139 | color131: #af5f5f 140 | color132: #af5f87 141 | color133: #af5faf 142 | color134: #af5fd7 143 | color135: #af5fff 144 | color136: #af8700 145 | color137: #af875f 146 | color138: #af8787 147 | color139: #af87af 148 | color140: #af87d7 149 | color141: #af87ff 150 | color142: #afaf00 151 | color143: #afaf5f 152 | color144: #afaf87 153 | color145: #afafaf 154 | color146: #afafd7 155 | color147: #afafff 156 | color148: #afd700 157 | color149: #afd75f 158 | color150: #afd787 159 | color151: #afd7af 160 | color152: #afd7d7 161 | color153: #afd7ff 162 | color154: #afff00 163 | color155: #afff5f 164 | color156: #afff87 165 | color157: #afffaf 166 | color158: #afffd7 167 | color159: #afffff 168 | color160: #d70000 169 | color161: #d7005f 170 | color162: #d70087 171 | color163: #d700af 172 | color164: #d700d7 173 | color165: #d700ff 174 | color166: #d75f00 175 | color167: #d75f5f 176 | color168: #d75f87 177 | color169: #d75faf 178 | color170: #d75fd7 179 | color171: #d75fff 180 | color172: #d78700 181 | color173: #d7875f 182 | color174: #d78787 183 | color175: #d787af 184 | color176: #d787d7 185 | color177: #d787ff 186 | color178: #d7af00 187 | color179: #d7af5f 188 | color180: #d7af87 189 | color181: #d7afaf 190 | color182: #d7afd7 191 | color183: #d7afff 192 | color184: #d7d700 193 | color185: #ffff00 194 | color186: #d7d787 195 | color187: #d7d7af 196 | color188: #d7d7d7 197 | color189: #d7d7ff 198 | color190: #d7ff00 199 | color191: #d7ff5f 200 | color192: #d7ff87 201 | color193: #d7ffaf 202 | color194: #d7ffd7 203 | color195: #d7ffff 204 | color196: #ff0000 205 | color197: #ff005f 206 | color198: #ff0087 207 | color199: #ff00af 208 | color200: #ff00d7 209 | color201: #ff00ff 210 | color202: #ff5f00 211 | color203: #ff5f5f 212 | color204: #ff5f87 213 | color205: #ff5faf 214 | color206: #ff5fd7 215 | color207: #ff5fff 216 | color208: #ff8700 217 | color209: #ff875f 218 | color210: #ff8787 219 | color211: #ff87af 220 | color212: #ff87d7 221 | color213: #ff87ff 222 | color214: #ffaf00 223 | color215: #ffaf5f 224 | color216: #ffaf87 225 | color217: #ffafaf 226 | color218: #ffafd7 227 | color219: #ffafff 228 | color220: #ffd700 229 | color221: #ffd75f 230 | color222: #ffd787 231 | color223: #ffd7af 232 | color224: #ffd7d7 233 | color225: #ffd7ff 234 | color226: #ffff00 235 | color227: #ffff5f 236 | color228: #ffff87 237 | color229: #ffffaf 238 | color230: #ffffd7 239 | color231: #060000 240 | color232: #080808 241 | color233: #121212 242 | color234: #1c1c1c 243 | color235: #262626 244 | color236: #303030 245 | color237: #3a3a3a 246 | color238: #444444 247 | color239: #4e4e4e 248 | color240: #585858 249 | color241: #626262 250 | color242: #6c6c6c 251 | color243: #767676 252 | color244: #808080 253 | color245: #8a8a8a 254 | color246: #949494 255 | color247: #9e9e9e 256 | color248: #a8a8a8 257 | color249: #b2b2b2 258 | color250: #bcbcbc 259 | color251: #c6c6c6 260 | color252: #d0d0d0 261 | color253: #dadada 262 | color254: #e4e4e4 263 | color255: #eeeeee 264 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/neon.properties: -------------------------------------------------------------------------------- 1 | # http=//xcolors.net/dl/neon 2 | background=#171717 3 | foreground=#F8F8F8 4 | # black 5 | color0=#171717 6 | color8=#38252C 7 | # red 8 | color1=#D81765 9 | color9=#FF0000 10 | # green 11 | color2=#97D01A 12 | color10=#76B639 13 | # yellow 14 | color3=#FFA800 15 | color11=#E1A126 16 | # blue 17 | color4=#16B1FB 18 | color12=#289CD5 19 | # magenta 20 | color5=#FF2491 21 | color13=#FF2491 22 | # cyan 23 | color6=#0FDCB6 24 | color14=#0A9B81 25 | # white 26 | color7=#EBEBEB 27 | color15=#F8F8F8 28 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/nord.properties: -------------------------------------------------------------------------------- 1 | # https://git.io/nord 2 | foreground=#d8dee9 3 | background=#2e3440 4 | cursor=#d8dee9 5 | 6 | color0=#3b4252 7 | color1=#bf616a 8 | color2=#a3be8c 9 | color3=#ebcb8b 10 | color4=#81a1c1 11 | color5=#b48ead 12 | color6=#88c0d0 13 | color7=#e5e8f0 14 | 15 | color8=#4c566a 16 | color9=#bf616a 17 | color10=#a3be8c 18 | color11=#ebcb8b 19 | color12=#81a1c1 20 | color13=#b48ead 21 | color14=#8fbcbb 22 | color15=#eceff4 23 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/nord.txt: -------------------------------------------------------------------------------- 1 | An arctic, north-bluish color palette by Arctic Ice Studio. 2 | 3 | https://git.io/nord 4 | 5 | Apache License 6 | ============== 7 | 8 | Version 2.0, January 2004 9 | http://www.apache.org/licenses/ 10 | 11 | ### Terms and Conditions for use, reproduction, and distribution 12 | 13 | #### 1. Definitions 14 | 15 | "License" shall mean the terms and conditions for use, reproduction, and 16 | distribution as defined by Sections 1 through 9 of this document. 17 | 18 | "Licensor" shall mean the copyright owner or entity authorized by the copyright 19 | owner that is granting the License. 20 | 21 | "Legal Entity" shall mean the union of the acting entity and all other entities 22 | that control, are controlled by, or are under common control with that entity. 23 | For the purposes of this definition, "control" means **(i)** the power, direct or 24 | indirect, to cause the direction or management of such entity, whether by 25 | contract or otherwise, or **(ii)** ownership of fifty percent (50%) or more of the 26 | outstanding shares, or **(iii)** beneficial ownership of such entity. 27 | 28 | "You" (or "Your") shall mean an individual or Legal Entity exercising 29 | permissions granted by this License. 30 | 31 | "Source" form shall mean the preferred form for making modifications, including 32 | but not limited to software source code, documentation source, and configuration 33 | files. 34 | 35 | "Object" form shall mean any form resulting from mechanical transformation or 36 | translation of a Source form, including but not limited to compiled object code, 37 | generated documentation, and conversions to other media types. 38 | 39 | "Work" shall mean the work of authorship, whether in Source or Object form, made 40 | available under the License, as indicated by a copyright notice that is included 41 | in or attached to the work (an example is provided in the Appendix below). 42 | 43 | "Derivative Works" shall mean any work, whether in Source or Object form, that 44 | is based on (or derived from) the Work and for which the editorial revisions, 45 | annotations, elaborations, or other modifications represent, as a whole, an 46 | original work of authorship. For the purposes of this License, Derivative Works 47 | shall not include works that remain separable from, or merely link (or bind by 48 | name) to the interfaces of, the Work and Derivative Works thereof. 49 | 50 | "Contribution" shall mean any work of authorship, including the original version 51 | of the Work and any modifications or additions to that Work or Derivative Works 52 | thereof, that is intentionally submitted to Licensor for inclusion in the Work 53 | by the copyright owner or by an individual or Legal Entity authorized to submit 54 | on behalf of the copyright owner. For the purposes of this definition, 55 | "submitted" means any form of electronic, verbal, or written communication sent 56 | to the Licensor or its representatives, including but not limited to 57 | communication on electronic mailing lists, source code control systems, and 58 | issue tracking systems that are managed by, or on behalf of, the Licensor for 59 | the purpose of discussing and improving the Work, but excluding communication 60 | that is conspicuously marked or otherwise designated in writing by the copyright 61 | owner as "Not a Contribution." 62 | 63 | "Contributor" shall mean Licensor and any individual or Legal Entity on behalf 64 | of whom a Contribution has been received by Licensor and subsequently 65 | incorporated within the Work. 66 | 67 | #### 2. Grant of Copyright License 68 | 69 | Subject to the terms and conditions of this License, each Contributor hereby 70 | grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, 71 | irrevocable copyright license to reproduce, prepare Derivative Works of, 72 | publicly display, publicly perform, sublicense, and distribute the Work and such 73 | Derivative Works in Source or Object form. 74 | 75 | #### 3. Grant of Patent License 76 | 77 | Subject to the terms and conditions of this License, each Contributor hereby 78 | grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, 79 | irrevocable (except as stated in this section) patent license to make, have 80 | made, use, offer to sell, sell, import, and otherwise transfer the Work, where 81 | such license applies only to those patent claims licensable by such Contributor 82 | that are necessarily infringed by their Contribution(s) alone or by combination 83 | of their Contribution(s) with the Work to which such Contribution(s) was 84 | submitted. If You institute patent litigation against any entity (including a 85 | cross-claim or counterclaim in a lawsuit) alleging that the Work or a 86 | Contribution incorporated within the Work constitutes direct or contributory 87 | patent infringement, then any patent licenses granted to You under this License 88 | for that Work shall terminate as of the date such litigation is filed. 89 | 90 | #### 4. Redistribution 91 | 92 | You may reproduce and distribute copies of the Work or Derivative Works thereof 93 | in any medium, with or without modifications, and in Source or Object form, 94 | provided that You meet the following conditions: 95 | 96 | * **(a)** You must give any other recipients of the Work or Derivative Works a copy of 97 | this License; and 98 | * **(b)** You must cause any modified files to carry prominent notices stating that You 99 | changed the files; and 100 | * **(c)** You must retain, in the Source form of any Derivative Works that You distribute, 101 | all copyright, patent, trademark, and attribution notices from the Source form 102 | of the Work, excluding those notices that do not pertain to any part of the 103 | Derivative Works; and 104 | * **(d)** If the Work includes a "NOTICE" text file as part of its distribution, then any 105 | Derivative Works that You distribute must include a readable copy of the 106 | attribution notices contained within such NOTICE file, excluding those notices 107 | that do not pertain to any part of the Derivative Works, in at least one of the 108 | following places: within a NOTICE text file distributed as part of the 109 | Derivative Works; within the Source form or documentation, if provided along 110 | with the Derivative Works; or, within a display generated by the Derivative 111 | Works, if and wherever such third-party notices normally appear. The contents of 112 | the NOTICE file are for informational purposes only and do not modify the 113 | License. You may add Your own attribution notices within Derivative Works that 114 | You distribute, alongside or as an addendum to the NOTICE text from the Work, 115 | provided that such additional attribution notices cannot be construed as 116 | modifying the License. 117 | 118 | You may add Your own copyright statement to Your modifications and may provide 119 | additional or different license terms and conditions for use, reproduction, or 120 | distribution of Your modifications, or for any such Derivative Works as a whole, 121 | provided Your use, reproduction, and distribution of the Work otherwise complies 122 | with the conditions stated in this License. 123 | 124 | #### 5. Submission of Contributions 125 | 126 | Unless You explicitly state otherwise, any Contribution intentionally submitted 127 | for inclusion in the Work by You to the Licensor shall be under the terms and 128 | conditions of this License, without any additional terms or conditions. 129 | Notwithstanding the above, nothing herein shall supersede or modify the terms of 130 | any separate license agreement you may have executed with Licensor regarding 131 | such Contributions. 132 | 133 | #### 6. Trademarks 134 | 135 | This License does not grant permission to use the trade names, trademarks, 136 | service marks, or product names of the Licensor, except as required for 137 | reasonable and customary use in describing the origin of the Work and 138 | reproducing the content of the NOTICE file. 139 | 140 | #### 7. Disclaimer of Warranty 141 | 142 | Unless required by applicable law or agreed to in writing, Licensor provides the 143 | Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, 144 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, 145 | including, without limitation, any warranties or conditions of TITLE, 146 | NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are 147 | solely responsible for determining the appropriateness of using or 148 | redistributing the Work and assume any risks associated with Your exercise of 149 | permissions under this License. 150 | 151 | #### 8. Limitation of Liability 152 | 153 | In no event and under no legal theory, whether in tort (including negligence), 154 | contract, or otherwise, unless required by applicable law (such as deliberate 155 | and grossly negligent acts) or agreed to in writing, shall any Contributor be 156 | liable to You for damages, including any direct, indirect, special, incidental, 157 | or consequential damages of any character arising as a result of this License or 158 | out of the use or inability to use the Work (including but not limited to 159 | damages for loss of goodwill, work stoppage, computer failure or malfunction, or 160 | any and all other commercial damages or losses), even if such Contributor has 161 | been advised of the possibility of such damages. 162 | 163 | #### 9. Accepting Warranty or Additional Liability 164 | 165 | While redistributing the Work or Derivative Works thereof, You may choose to 166 | offer, and charge a fee for, acceptance of support, warranty, indemnity, or 167 | other liability obligations and/or rights consistent with this License. However, 168 | in accepting such obligations, You may act only on Your own behalf and on Your 169 | sole responsibility, not on behalf of any other Contributor, and only if You 170 | agree to indemnify, defend, and hold each Contributor harmless for any liability 171 | incurred by, or claims asserted against, such Contributor by reason of your 172 | accepting any such warranty or additional liability. 173 | 174 | *END OF TERMS AND CONDITIONS* 175 | 176 | ### APPENDIX: How to apply the Apache License to your work 177 | 178 | To apply the Apache License to your work, attach the following boilerplate 179 | notice, with the fields enclosed by brackets `[]` replaced with your own 180 | identifying information. (Don't include the brackets!) The text should be 181 | enclosed in the appropriate comment syntax for the file format. We also 182 | recommend that a file or class name and description of purpose be included on 183 | the same "printed page" as the copyright notice for easier identification within 184 | third-party archives. 185 | 186 | Copyright [yyyy] [name of copyright owner] 187 | 188 | Licensed under the Apache License, Version 2.0 (the "License"); 189 | you may not use this file except in compliance with the License. 190 | You may obtain a copy of the License at 191 | 192 | http://www.apache.org/licenses/LICENSE-2.0 193 | 194 | Unless required by applicable law or agreed to in writing, software 195 | distributed under the License is distributed on an "AS IS" BASIS, 196 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 197 | See the License for the specific language governing permissions and 198 | limitations under the License. 199 | 200 | ## Creative Commons Attribution-ShareAlike 4.0 International Public License 201 | 202 | By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution-ShareAlike 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. 203 | 204 | ### Section 1 – Definitions. 205 | 206 | a. **Adapted Material** means material subject to Copyright and Similar Rights that is derived from or based upon the Licensed Material and in which the Licensed Material is translated, altered, arranged, transformed, or otherwise modified in a manner requiring permission under the Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the Licensed Material is a musical work, performance, or sound recording, Adapted Material is always produced where the Licensed Material is synched in timed relation with a moving image. 207 | 208 | b. **Adapter's License** means the license You apply to Your Copyright and Similar Rights in Your contributions to Adapted Material in accordance with the terms and conditions of this Public License. 209 | 210 | c. **BY-SA Compatible License** means a license listed at [creativecommons.org/compatiblelicenses](http://creativecommons.org/compatiblelicenses), approved by Creative Commons as essentially the equivalent of this Public License. 211 | 212 | d. **Copyright and Similar Rights** means copyright and/or similar rights closely related to copyright including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Public License, the rights specified in Section 2(b)(1)-(2) are not Copyright and Similar Rights. 213 | 214 | e. **Effective Technological Measures** means those measures that, in the absence of proper authority, may not be circumvented under laws fulfilling obligations under Article 11 of the WIPO Copyright Treaty adopted on December 20, 1996, and/or similar international agreements. 215 | 216 | f. **Exceptions and Limitations** means fair use, fair dealing, and/or any other exception or limitation to Copyright and Similar Rights that applies to Your use of the Licensed Material. 217 | 218 | g. **License Elements** means the license attributes listed in the name of a Creative Commons Public License. The License Elements of this Public License are Attribution and ShareAlike. 219 | 220 | h. **Licensed Material** means the artistic or literary work, database, or other material to which the Licensor applied this Public License. 221 | 222 | i. **Licensed Rights** means the rights granted to You subject to the terms and conditions of this Public License, which are limited to all Copyright and Similar Rights that apply to Your use of the Licensed Material and that the Licensor has authority to license. 223 | 224 | j. **Licensor** means the individual(s) or entity(ies) granting rights under this Public License. 225 | 226 | k. **Share** means to provide material to the public by any means or process that requires permission under the Licensed Rights, such as reproduction, public display, public performance, distribution, dissemination, communication, or importation, and to make material available to the public including in ways that members of the public may access the material from a place and at a time individually chosen by them. 227 | 228 | l. **Sui Generis Database Rights** means rights other than copyright resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world. 229 | 230 | m. **You** means the individual or entity exercising the Licensed Rights under this Public License. Your has a corresponding meaning. 231 | 232 | ### Section 2 – Scope. 233 | 234 | a. **_License grant.**_ 235 | 236 | 1. Subject to the terms and conditions of this Public License, the Licensor hereby grants You a worldwide, royalty-free, non-sublicensable, non-exclusive, irrevocable license to exercise the Licensed Rights in the Licensed Material to: 237 | 238 | A. reproduce and Share the Licensed Material, in whole or in part; and 239 | 240 | B. produce, reproduce, and Share Adapted Material. 241 | 242 | 2. **Exceptions and Limitations.** For the avoidance of doubt, where Exceptions and Limitations apply to Your use, this Public License does not apply, and You do not need to comply with its terms and conditions. 243 | 244 | 3. **Term.** The term of this Public License is specified in Section 6(a). 245 | 246 | 4. **Media and formats; technical modifications allowed.** The Licensor authorizes You to exercise the Licensed Rights in all media and formats whether now known or hereafter created, and to make technical modifications necessary to do so. The Licensor waives and/or agrees not to assert any right or authority to forbid You from making technical modifications necessary to exercise the Licensed Rights, including technical modifications necessary to circumvent Effective Technological Measures. For purposes of this Public License, simply making modifications authorized by this Section 2(a)(4) never produces Adapted Material. 247 | 248 | 5. **Downstream recipients.** 249 | 250 | A. **Offer from the Licensor – Licensed Material.** Every recipient of the Licensed Material automatically receives an offer from the Licensor to exercise the Licensed Rights under the terms and conditions of this Public License. 251 | 252 | B. **Additional offer from the Licensor – Adapted Material. Every recipient of Adapted Material from You automatically receives an offer from the Licensor to exercise the Licensed Rights in the Adapted Material under the conditions of the Adapter’s License You apply. 253 | 254 | C. **No downstream restrictions.** You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, the Licensed Material if doing so restricts exercise of the Licensed Rights by any recipient of the Licensed Material. 255 | 256 | 6. **No endorsement.** Nothing in this Public License constitutes or may be construed as permission to assert or imply that You are, or that Your use of the Licensed Material is, connected with, or sponsored, endorsed, or granted official status by, the Licensor or others designated to receive attribution as provided in Section 3(a)(1)(A)(i). 257 | 258 | b. **_Other rights.**_ 259 | 260 | 1. Moral rights, such as the right of integrity, are not licensed under this Public License, nor are publicity, privacy, and/or other similar personality rights; however, to the extent possible, the Licensor waives and/or agrees not to assert any such rights held by the Licensor to the limited extent necessary to allow You to exercise the Licensed Rights, but not otherwise. 261 | 262 | 2. Patent and trademark rights are not licensed under this Public License. 263 | 264 | 3. To the extent possible, the Licensor waives any right to collect royalties from You for the exercise of the Licensed Rights, whether directly or through a collecting society under any voluntary or waivable statutory or compulsory licensing scheme. In all other cases the Licensor expressly reserves any right to collect such royalties. 265 | 266 | ### Section 3 – License Conditions. 267 | 268 | Your exercise of the Licensed Rights is expressly made subject to the following conditions. 269 | 270 | a. **_Attribution.**_ 271 | 272 | 1. If You Share the Licensed Material (including in modified form), You must: 273 | 274 | A. retain the following if it is supplied by the Licensor with the Licensed Material: 275 | 276 | i. identification of the creator(s) of the Licensed Material and any others designated to receive attribution, in any reasonable manner requested by the Licensor (including by pseudonym if designated); 277 | 278 | ii. a copyright notice; 279 | 280 | iii. a notice that refers to this Public License; 281 | 282 | iv. a notice that refers to the disclaimer of warranties; 283 | 284 | v. a URI or hyperlink to the Licensed Material to the extent reasonably practicable; 285 | 286 | B. indicate if You modified the Licensed Material and retain an indication of any previous modifications; and 287 | 288 | C. indicate the Licensed Material is licensed under this Public License, and include the text of, or the URI or hyperlink to, this Public License. 289 | 290 | 2. You may satisfy the conditions in Section 3(a)(1) in any reasonable manner based on the medium, means, and context in which You Share the Licensed Material. For example, it may be reasonable to satisfy the conditions by providing a URI or hyperlink to a resource that includes the required information. 291 | 292 | 3. If requested by the Licensor, You must remove any of the information required by Section 3(a)(1)(A) to the extent reasonably practicable. 293 | 294 | b. **_ShareAlike.**_ 295 | 296 | In addition to the conditions in Section 3(a), if You Share Adapted Material You produce, the following conditions also apply. 297 | 298 | 1. The Adapter’s License You apply must be a Creative Commons license with the same License Elements, this version or later, or a BY-SA Compatible License. 299 | 300 | 2. You must include the text of, or the URI or hyperlink to, the Adapter's License You apply. You may satisfy this condition in any reasonable manner based on the medium, means, and context in which You Share Adapted Material. 301 | 302 | 3. You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, Adapted Material that restrict exercise of the rights granted under the Adapter's License You apply. 303 | 304 | ### Section 4 – Sui Generis Database Rights. 305 | 306 | Where the Licensed Rights include Sui Generis Database Rights that apply to Your use of the Licensed Material: 307 | 308 | a. for the avoidance of doubt, Section 2(a)(1) grants You the right to extract, reuse, reproduce, and Share all or a substantial portion of the contents of the database; 309 | 310 | b. if You include all or a substantial portion of the database contents in a database in which You have Sui Generis Database Rights, then the database in which You have Sui Generis Database Rights (but not its individual contents) is Adapted Material, including for purposes of Section 3(b); and 311 | 312 | c. You must comply with the conditions in Section 3(a) if You Share all or a substantial portion of the contents of the database. 313 | 314 | For the avoidance of doubt, this Section 4 supplements and does not replace Your obligations under this Public License where the Licensed Rights include other Copyright and Similar Rights. 315 | 316 | ### Section 5 – Disclaimer of Warranties and Limitation of Liability. 317 | 318 | a. **Unless otherwise separately undertaken by the Licensor, to the extent possible, the Licensor offers the Licensed Material as-is and as-available, and makes no representations or warranties of any kind concerning the Licensed Material, whether express, implied, statutory, or other. This includes, without limitation, warranties of title, merchantability, fitness for a particular purpose, non-infringement, absence of latent or other defects, accuracy, or the presence or absence of errors, whether or not known or discoverable. Where disclaimers of warranties are not allowed in full or in part, this disclaimer may not apply to You.** 319 | 320 | b. **To the extent possible, in no event will the Licensor be liable to You on any legal theory (including, without limitation, negligence) or otherwise for any direct, special, indirect, incidental, consequential, punitive, exemplary, or other losses, costs, expenses, or damages arising out of this Public License or use of the Licensed Material, even if the Licensor has been advised of the possibility of such losses, costs, expenses, or damages. Where a limitation of liability is not allowed in full or in part, this limitation may not apply to You.** 321 | 322 | c. The disclaimer of warranties and limitation of liability provided above shall be interpreted in a manner that, to the extent possible, most closely approximates an absolute disclaimer and waiver of all liability. 323 | 324 | ### Section 6 – Term and Termination. 325 | 326 | a. This Public License applies for the term of the Copyright and Similar Rights licensed here. However, if You fail to comply with this Public License, then Your rights under this Public License terminate automatically. 327 | 328 | b. Where Your right to use the Licensed Material has terminated under Section 6(a), it reinstates: 329 | 330 | 1. automatically as of the date the violation is cured, provided it is cured within 30 days of Your discovery of the violation; or 331 | 332 | 2. upon express reinstatement by the Licensor. 333 | 334 | For the avoidance of doubt, this Section 6(b) does not affect any right the Licensor may have to seek remedies for Your violations of this Public License. 335 | 336 | c. For the avoidance of doubt, the Licensor may also offer the Licensed Material under separate terms or conditions or stop distributing the Licensed Material at any time; however, doing so will not terminate this Public License. 337 | 338 | d. Sections 1, 5, 6, 7, and 8 survive termination of this Public License. 339 | 340 | ### Section 7 – Other Terms and Conditions. 341 | 342 | a. The Licensor shall not be bound by any additional or different terms or conditions communicated by You unless expressly agreed. 343 | 344 | b. Any arrangements, understandings, or agreements regarding the Licensed Material not stated herein are separate from and independent of the terms and conditions of this Public License.t stated herein are separate from and independent of the terms and conditions of this Public License. 345 | 346 | ### Section 8 – Interpretation. 347 | 348 | a. For the avoidance of doubt, this Public License does not, and shall not be interpreted to, reduce, limit, restrict, or impose conditions on any use of the Licensed Material that could lawfully be made without permission under this Public License. 349 | 350 | b. To the extent possible, if any provision of this Public License is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable. If the provision cannot be reformed, it shall be severed from this Public License without affecting the enforceability of the remaining terms and conditions. 351 | 352 | c. No term or condition of this Public License will be waived and no failure to comply consented to unless expressly agreed to by the Licensor. 353 | 354 | d. Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority. 355 | 356 | Creative Commons is not a party to its public licenses. Notwithstanding, Creative Commons may elect to apply one of its public licenses to material it publishes and in those instances will be considered the “Licensor.” Except for the limited purpose of indicating that material is shared under a Creative Commons public license or as otherwise permitted by the Creative Commons policies published at [creativecommons.org/policies](http://creativecommons.org/policies), Creative Commons does not authorize the use of the trademark “Creative Commons” or any other trademark or logo of Creative Commons without its prior written consent including, without limitation, in connection with any unauthorized modifications to any of its public licenses or any other arrangements, understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses. 357 | 358 | Creative Commons may be contacted at creativecommons.org 359 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/rosé-pine-dawn.properties: -------------------------------------------------------------------------------- 1 | # Scheme: Rosé Pine Dawn (http://rosepinetheme.com) 2 | # Author: ThatOneCalculator (https://github.com/thatonecalculator) 3 | 4 | background=#faf4ed 5 | foreground=#575279 6 | cursor=#797593 7 | 8 | # black 9 | color0=#f2e9e1 10 | color8=#797593 11 | # red 12 | color1=#b4637a 13 | color9=#b4637a 14 | # green 15 | color2=#286983 16 | color10=#286983 17 | # yellow 18 | color3=#ea9d34 19 | color11=#ea9d34 20 | # blue 21 | color4=#56949f 22 | color12=#56949f 23 | # magenta 24 | color5=#907aa9 25 | color13=#907aa9 26 | # cyan 27 | color6=#d7827e 28 | color14=#d7827e 29 | # white 30 | color7=#575279 31 | color15=#575279 32 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/rosé-pine-moon.properties: -------------------------------------------------------------------------------- 1 | # Scheme: Rosé Pine Moon (http://rosepinetheme.com) 2 | # Author: ThatOneCalculator (https://github.com/thatonecalculator) 3 | 4 | background=#232136 5 | foreground=#e0def4 6 | cursor=#6e6a86 7 | 8 | # black 9 | color0=#393552 10 | color8=#6e6a86 11 | # red 12 | color1=#eb6f92 13 | color9=#eb6f92 14 | # green 15 | color2=#3e8fb0 16 | color10=#3e8fb0 17 | # yellow 18 | color3=#f6c177 19 | color11=#f6c177 20 | # blue 21 | color4=#9ccfd8 22 | color12=#9ccfd8 23 | # magenta 24 | color5=#c4a7e7 25 | color13=#c4a7e7 26 | # cyan 27 | color6=#ea9a97 28 | color14=#ea9a97 29 | # white 30 | color7=#e0def4 31 | color15=#e0def4 32 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/rosé-pine.properties: -------------------------------------------------------------------------------- 1 | # Scheme: Rosé Pine (http://rosepinetheme.com) 2 | # Author: ThatOneCalculator (https://github.com/thatonecalculator) 3 | 4 | background=#191724 5 | foreground=#e0def4 6 | cursor=#6e6a86 7 | 8 | # black 9 | color0=#26233a 10 | color8=#6e6a86 11 | # red 12 | color1=#eb6f92 13 | color9=#eb6f92 14 | # green 15 | color2=#31748f 16 | color10=#31748f 17 | # yellow 18 | color3=#f6c177 19 | color11=#f6c177 20 | # blue 21 | color4=#9ccfd8 22 | color12=#9ccfd8 23 | # magenta 24 | color5=#c4a7e7 25 | color13=#c4a7e7 26 | # cyan 27 | color6=#ebbcba 28 | color14=#ebbcba 29 | # white 30 | color7=#e0def4 31 | color15=#e0def4 32 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/rydgel.properties: -------------------------------------------------------------------------------- 1 | # Black 2 | color0: #303430 3 | color8: #cdb5cd 4 | 5 | # Red 6 | color1: #bf7979 7 | color9: #f4a45f 8 | 9 | # Green 10 | color2: #97b26b 11 | color10: #c5f779 12 | 13 | # Yellow 14 | color3: #cdcdc1 15 | color11: #ffffed 16 | 17 | # Blue 18 | color4: #86a2be 19 | color12: #98afd9 20 | 21 | # Magenta 22 | color5: #d9b798 23 | color13: #d7d998 24 | 25 | # Cyan 26 | color6: #a1b5cd 27 | color14: #a1b5cd 28 | 29 | # White 30 | color7: #ffffff 31 | color15: #dedede 32 | 33 | # vim: et sw=2 syn=xdefaults 34 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/smyck.properties: -------------------------------------------------------------------------------- 1 | #https://github.com/hukl/Smyck-Color-Scheme/blob/master/colors 2 | background=#212121 3 | foreground=#f7f7f7 4 | cursor=#218693 5 | 6 | color0=#000000 7 | color1=#c75646 8 | color2=#8eb33b 9 | color3=#d0b03c 10 | color4=#4e90a7 11 | color5=#c8a0d1 12 | color6=#218693 13 | color7=#b0b0b0 14 | color9=#e09690 15 | color8=#5d5d5d 16 | color10=#cdee69 17 | color11=#ffe377 18 | color12=#9cd9f0 19 | color13=#fbb1f9 20 | color14=#77dfd8 21 | color15=#f7f7f7 22 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/smyck.txt: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) Copyright (c) 2012 John-Paul Bader 2 | - http://color.smyck.org/ 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining a copy of 5 | this software and associated documentation files (the "Software"), to deal in 6 | the Software without restriction, including without limitation the rights to 7 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 8 | the Software, and to permit persons to whom the Software is furnished to do so, 9 | subject to the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be included in all 12 | copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 16 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 17 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 18 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 19 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/solarized-dark.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/altercation/solarized/blob/master/xresources/solarized 2 | background=#002b36 3 | foreground=#839496 4 | cursor=#93a1a1 5 | 6 | color0=#073642 7 | color1=#dc322f 8 | color2=#859900 9 | color3=#b58900 10 | color4=#268bd2 11 | color5=#d33682 12 | color6=#2aa198 13 | color7=#eee8d5 14 | color9=#cb4b16 15 | color8=#002b36 16 | color10=#586e75 17 | color11=#657b83 18 | color12=#839496 19 | color13=#6c71c4 20 | color14=#93a1a1 21 | color15=#fdf6e3 22 | 23 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/solarized-light.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/altercation/solarized/blob/master/xresources/solarized 2 | background=#fdf6e3 3 | foreground=#657b83 4 | cursor=#586e75 5 | 6 | color0=#073642 7 | color1=#dc322f 8 | color2=#859900 9 | color3=#b58900 10 | color4=#268bd2 11 | color5=#d33682 12 | color6=#2aa198 13 | color7=#eee8d5 14 | color8=#002b36 15 | color9=#cb4b16 16 | color10=#586e75 17 | color11=#657b83 18 | color12=#839496 19 | color13=#6c71c4 20 | color14=#93a1a1 21 | color15=#fdf6e3 22 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/spacemacs.properties: -------------------------------------------------------------------------------- 1 | foreground=#adb0a2 2 | background=#292b2e 3 | cursor=#eead0e 4 | color0=#1C2023 5 | color1=#C7AE95 6 | color2=#cc5279 7 | color3=#6690da 8 | color4=#000000 9 | color5=#C795AE 10 | color6=#4f97d7 11 | color7=#C7CCD1 12 | color8=#747C84 13 | color9=#C7AE95 14 | color10=#95C7AE 15 | color11=#AEC795 16 | color12=#bb6dc4 17 | color13=#C795AE 18 | color14=#95AEC7 19 | color15=#F3F4F5 20 | color16=#C7C795 21 | color17=#C79595 22 | color18=#393F45 23 | color19=#565E65 24 | color20=#ADB3BA 25 | color21=#DFE2E5 26 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/tokyonight-dark.properties: -------------------------------------------------------------------------------- 1 | ## Name: Tokyo Night Dark 2 | 3 | # Special 4 | foreground = #c0caf5 5 | cursor = #c0caf5 6 | background = #1a1b26 7 | # Black 8 | color0 = #15161E 9 | color8 = #414868 10 | # Red 11 | color1 = #f7768e 12 | color9 = #f7768e 13 | color17 = #db4b4b 14 | # Green 15 | color2 = #9ece6a 16 | color10 = #9ece6a 17 | # Yellow 18 | color3 = #e0af68 19 | color11 = #e0af68 20 | # Blue 21 | color4 = #7aa2f7 22 | color12 = #7aa2f7 23 | # Purple 24 | color5 = #bb9af7 25 | color13 = #bb9af7 26 | # Cyan 27 | color14 = #7dcfff 28 | color6 = #7dcfff 29 | # White 30 | color7 = #a9b1d6 31 | color15 = #c0caf5 32 | # Orange 33 | color16 = #ff9e64 34 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/tokyonight-day.properties: -------------------------------------------------------------------------------- 1 | ## name: Tokyo Night Day 2 | 3 | # Special 4 | background = #e1e2e7 5 | foreground = #3760bf 6 | cursor = #3760bf 7 | # White 8 | color0 = #e9e9ed 9 | color8 = #a1a6c5 10 | # Red 11 | color1 = #f52a65 12 | color9 = #f52a65 13 | color17 = #c64343 14 | # Green 15 | color2 = #587539 16 | color10 = #587539 17 | # Yellow 18 | color3 = #8c6c3e 19 | color11 = #8c6c3e 20 | # Blue 21 | color4 = #2e7de9 22 | color12 = #2e7de9 23 | color7 = #6172b0 24 | color15 = #3760bf 25 | # Purple 26 | color5 = #9854f1 27 | color13 = #9854f1 28 | # Cyan 29 | color6 = #007197 30 | color14 = #007197 31 | # Orange 32 | color16 = #b15c00 33 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/tomorrow-night.properties: -------------------------------------------------------------------------------- 1 | # http://chriskempson.github.io/base16/#tomorrow 2 | background=#1d1f21 3 | foreground=#c5c8c6 4 | cursor=#c5c8c6 5 | 6 | color0=#1d1f21 7 | color1=#cc6666 8 | color2=#b5bd68 9 | color3=#f0c674 10 | color4=#81a2be 11 | color5=#b294bb 12 | color6=#8abeb7 13 | color7=#c5c8c6 14 | color9=#969896 15 | color8=#cc6666 16 | color10=#b5bd68 17 | color11=#f0c674 18 | color12=#81a2be 19 | color13=#b294bb 20 | color14=#8abeb7 21 | color15=#ffffff 22 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/ubuntu.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/Mayccoll/Gogh/blob/master/themes/clone-of-ubuntu.sh 2 | background=#300a24 3 | foreground=#ffffff 4 | cursor=#ffffff 5 | 6 | color0=#2E3436 7 | color1=#CC0000 8 | color2=#4E9A06 9 | color3=#C4A000 10 | color4=#3465A4 11 | color5=#75507B 12 | color6=#06989A 13 | color7=#D3D7CF 14 | 15 | color8=#555753 16 | color9=#EF2929 17 | color10=#8AE234 18 | color11=#FCE94F 19 | color12=#729FCF 20 | color13=#AD7FA8 21 | color14=#34E2E2 22 | color15=#EEEEEC 23 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/white-on-black.properties: -------------------------------------------------------------------------------- 1 | background: #000000 2 | foreground: #FFFFFF 3 | 4 | color1:#FFFFFF 5 | color2:#FFFFFF 6 | color3:#FFFFFF 7 | color4:#FFFFFF 8 | color5:#FFFFFF 9 | color6:#FFFFFF 10 | color7:#FFFFFF 11 | color8:#FFFFFF 12 | color9:#FFFFFF 13 | color10:#FFFFFF 14 | color11:#FFFFFF 15 | color12:#FFFFFF 16 | color13:#FFFFFF 17 | color14:#FFFFFF 18 | color15:#FFFFFF 19 | color16:#FFFFFF 20 | color17:#FFFFFF 21 | color18:#FFFFFF 22 | color19:#FFFFFF 23 | color20:#FFFFFF 24 | color21:#FFFFFF 25 | color22:#FFFFFF 26 | color23:#FFFFFF 27 | color24:#FFFFFF 28 | color25:#FFFFFF 29 | color26:#FFFFFF 30 | color27:#FFFFFF 31 | color28:#FFFFFF 32 | color29:#FFFFFF 33 | color30:#FFFFFF 34 | color31:#FFFFFF 35 | color32:#FFFFFF 36 | color33:#FFFFFF 37 | color34:#FFFFFF 38 | color35:#FFFFFF 39 | color36:#FFFFFF 40 | color37:#FFFFFF 41 | color38:#FFFFFF 42 | color39:#FFFFFF 43 | color40:#FFFFFF 44 | color41:#FFFFFF 45 | color42:#FFFFFF 46 | color43:#FFFFFF 47 | color44:#FFFFFF 48 | color45:#FFFFFF 49 | color46:#FFFFFF 50 | color47:#FFFFFF 51 | color48:#FFFFFF 52 | color49:#FFFFFF 53 | color50:#FFFFFF 54 | color51:#FFFFFF 55 | color52:#FFFFFF 56 | color53:#FFFFFF 57 | color54:#FFFFFF 58 | color55:#FFFFFF 59 | color56:#FFFFFF 60 | color57:#FFFFFF 61 | color58:#FFFFFF 62 | color59:#FFFFFF 63 | color60:#FFFFFF 64 | color61:#FFFFFF 65 | color62:#FFFFFF 66 | color63:#FFFFFF 67 | color64:#FFFFFF 68 | color65:#FFFFFF 69 | color66:#FFFFFF 70 | color67:#FFFFFF 71 | color68:#FFFFFF 72 | color69:#FFFFFF 73 | color70:#FFFFFF 74 | color71:#FFFFFF 75 | color72:#FFFFFF 76 | color73:#FFFFFF 77 | color74:#FFFFFF 78 | color75:#FFFFFF 79 | color76:#FFFFFF 80 | color77:#FFFFFF 81 | color78:#FFFFFF 82 | color79:#FFFFFF 83 | color80:#FFFFFF 84 | color81:#FFFFFF 85 | color82:#FFFFFF 86 | color83:#FFFFFF 87 | color84:#FFFFFF 88 | color85:#FFFFFF 89 | color86:#FFFFFF 90 | color87:#FFFFFF 91 | color88:#FFFFFF 92 | color89:#FFFFFF 93 | color90:#FFFFFF 94 | color91:#FFFFFF 95 | color92:#FFFFFF 96 | color93:#FFFFFF 97 | color94:#FFFFFF 98 | color95:#FFFFFF 99 | color96:#FFFFFF 100 | color97:#FFFFFF 101 | color98:#FFFFFF 102 | color99:#FFFFFF 103 | color100:#FFFFFF 104 | color101:#FFFFFF 105 | color102:#FFFFFF 106 | color103:#FFFFFF 107 | color104:#FFFFFF 108 | color105:#FFFFFF 109 | color106:#FFFFFF 110 | color107:#FFFFFF 111 | color108:#FFFFFF 112 | color109:#FFFFFF 113 | color110:#FFFFFF 114 | color111:#FFFFFF 115 | color112:#FFFFFF 116 | color113:#FFFFFF 117 | color114:#FFFFFF 118 | color115:#FFFFFF 119 | color116:#FFFFFF 120 | color117:#FFFFFF 121 | color118:#FFFFFF 122 | color119:#FFFFFF 123 | color120:#FFFFFF 124 | color121:#FFFFFF 125 | color122:#FFFFFF 126 | color123:#FFFFFF 127 | color124:#FFFFFF 128 | color125:#FFFFFF 129 | color126:#FFFFFF 130 | color127:#FFFFFF 131 | color128:#FFFFFF 132 | color129:#FFFFFF 133 | color130:#FFFFFF 134 | color131:#FFFFFF 135 | color132:#FFFFFF 136 | color133:#FFFFFF 137 | color134:#FFFFFF 138 | color135:#FFFFFF 139 | color136:#FFFFFF 140 | color137:#FFFFFF 141 | color138:#FFFFFF 142 | color139:#FFFFFF 143 | color140:#FFFFFF 144 | color141:#FFFFFF 145 | color142:#FFFFFF 146 | color143:#FFFFFF 147 | color144:#FFFFFF 148 | color145:#FFFFFF 149 | color146:#FFFFFF 150 | color147:#FFFFFF 151 | color148:#FFFFFF 152 | color149:#FFFFFF 153 | color150:#FFFFFF 154 | color151:#FFFFFF 155 | color152:#FFFFFF 156 | color153:#FFFFFF 157 | color154:#FFFFFF 158 | color155:#FFFFFF 159 | color156:#FFFFFF 160 | color157:#FFFFFF 161 | color158:#FFFFFF 162 | color159:#FFFFFF 163 | color160:#FFFFFF 164 | color161:#FFFFFF 165 | color162:#FFFFFF 166 | color163:#FFFFFF 167 | color164:#FFFFFF 168 | color165:#FFFFFF 169 | color166:#FFFFFF 170 | color167:#FFFFFF 171 | color168:#FFFFFF 172 | color169:#FFFFFF 173 | color170:#FFFFFF 174 | color171:#FFFFFF 175 | color172:#FFFFFF 176 | color173:#FFFFFF 177 | color174:#FFFFFF 178 | color175:#FFFFFF 179 | color176:#FFFFFF 180 | color177:#FFFFFF 181 | color178:#FFFFFF 182 | color179:#FFFFFF 183 | color180:#FFFFFF 184 | color181:#FFFFFF 185 | color182:#FFFFFF 186 | color183:#FFFFFF 187 | color184:#FFFFFF 188 | color185:#FFFFFF 189 | color186:#FFFFFF 190 | color187:#FFFFFF 191 | color188:#FFFFFF 192 | color189:#FFFFFF 193 | color190:#FFFFFF 194 | color191:#FFFFFF 195 | color192:#FFFFFF 196 | color193:#FFFFFF 197 | color194:#FFFFFF 198 | color195:#FFFFFF 199 | color196:#FFFFFF 200 | color197:#FFFFFF 201 | color198:#FFFFFF 202 | color199:#FFFFFF 203 | color200:#FFFFFF 204 | color201:#FFFFFF 205 | color202:#FFFFFF 206 | color203:#FFFFFF 207 | color204:#FFFFFF 208 | color205:#FFFFFF 209 | color206:#FFFFFF 210 | color207:#FFFFFF 211 | color208:#FFFFFF 212 | color209:#FFFFFF 213 | color210:#FFFFFF 214 | color211:#FFFFFF 215 | color212:#FFFFFF 216 | color213:#FFFFFF 217 | color214:#FFFFFF 218 | color215:#FFFFFF 219 | color216:#FFFFFF 220 | color217:#FFFFFF 221 | color218:#FFFFFF 222 | color219:#FFFFFF 223 | color220:#FFFFFF 224 | color221:#FFFFFF 225 | color222:#FFFFFF 226 | color223:#FFFFFF 227 | color224:#FFFFFF 228 | color225:#FFFFFF 229 | color226:#FFFFFF 230 | color227:#FFFFFF 231 | color228:#FFFFFF 232 | color229:#FFFFFF 233 | color230:#FFFFFF 234 | color231:#FFFFFF 235 | color232:#FFFFFF 236 | color233:#FFFFFF 237 | color234:#FFFFFF 238 | color235:#FFFFFF 239 | color236:#FFFFFF 240 | color237:#FFFFFF 241 | color238:#FFFFFF 242 | color239:#FFFFFF 243 | color240:#FFFFFF 244 | color241:#FFFFFF 245 | color242:#FFFFFF 246 | color243:#FFFFFF 247 | color244:#FFFFFF 248 | color245:#FFFFFF 249 | color246:#FFFFFF 250 | color247:#FFFFFF 251 | color248:#FFFFFF 252 | color249:#FFFFFF 253 | color250:#FFFFFF 254 | color251:#FFFFFF 255 | color252:#FFFFFF 256 | color253:#FFFFFF 257 | color254:#FFFFFF 258 | color255:#FFFFFF 259 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/wild-cherry.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/mashaal/wild-cherry 2 | color0: #099BD7 3 | color10: #2AB250 4 | color11: #FFD16F 5 | color12: #883CDB 6 | color13: #099BD7 7 | color14: #4F5D95 8 | color15: #FFF8DE 9 | color1: #D94085 10 | color2: #2AB250 11 | color3: #FFD16F 12 | color4: #883CDC 13 | color5: #0F9DBA 14 | color6: #4F5D95 15 | color7: #FFF8DD 16 | color8: #099BD7 17 | color9: #D94084 18 | background: #1F1626 19 | cursor: #0F9DBA 20 | foreground: #FFFFFF 21 | 22 | -------------------------------------------------------------------------------- /app/src/main/assets/colors/zenburn.properties: -------------------------------------------------------------------------------- 1 | # http://dotfiles.org/~jbromley/.Xresources 2 | background=#000010 3 | foreground=#ffffff 4 | cursor=#FF00FF 5 | 6 | color0=#000000 7 | color1=#9e1828 8 | color2=#aece92 9 | color3=#968a38 10 | color4=#414171 11 | color5=#963c59 12 | color6=#418179 13 | color7=#bebebe 14 | color8=#666666 15 | color9=#cf6171 16 | color10=#c5f779 17 | color11=#fff796 18 | color12=#4186be 19 | color13=#cf9ebe 20 | color14=#71bebe 21 | color15=#ffffff 22 | -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Anonymous-Pro.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termux/termux-styling/82dcd3243349d1c5de9a9055b429331d1a01b388/app/src/main/assets/fonts/Anonymous-Pro.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Bedstead-Condensed.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termux/termux-styling/82dcd3243349d1c5de9a9055b429331d1a01b388/app/src/main/assets/fonts/Bedstead-Condensed.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Bedstead-Condensed.txt: -------------------------------------------------------------------------------- 1 | Bedstead 2 | 3 | Bedstead is a family of outline fonts based on the characters produced by the Mullard SAA5050 series of Teletext Character Generators. 4 | 5 | http://bjh21.me.uk/bedstead/ 6 | 7 | License: CC0 8 | -------------------------------------------------------------------------------- /app/src/main/assets/fonts/CascadiaCode.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termux/termux-styling/82dcd3243349d1c5de9a9055b429331d1a01b388/app/src/main/assets/fonts/CascadiaCode.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/CascadiaCode.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2019 - Present, Microsoft Corporation, 2 | with Reserved Font Name Cascadia Code. 3 | 4 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 5 | This license is copied below, and is also available with a FAQ at: 6 | http://scripts.sil.org/OFL 7 | 8 | 9 | ----------------------------------------------------------- 10 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 11 | ----------------------------------------------------------- 12 | 13 | PREAMBLE 14 | The goals of the Open Font License (OFL) are to stimulate worldwide 15 | development of collaborative font projects, to support the font creation 16 | efforts of academic and linguistic communities, and to provide a free and 17 | open framework in which fonts may be shared and improved in partnership 18 | with others. 19 | 20 | The OFL allows the licensed fonts to be used, studied, modified and 21 | redistributed freely as long as they are not sold by themselves. The 22 | fonts, including any derivative works, can be bundled, embedded, 23 | redistributed and/or sold with any software provided that any reserved 24 | names are not used by derivative works. The fonts and derivatives, 25 | however, cannot be released under any other type of license. The 26 | requirement for fonts to remain under this license does not apply 27 | to any document created using the fonts or their derivatives. 28 | 29 | DEFINITIONS 30 | "Font Software" refers to the set of files released by the Copyright 31 | Holder(s) under this license and clearly marked as such. This may 32 | include source files, build scripts and documentation. 33 | 34 | "Reserved Font Name" refers to any names specified as such after the 35 | copyright statement(s). 36 | 37 | "Original Version" refers to the collection of Font Software components as 38 | distributed by the Copyright Holder(s). 39 | 40 | "Modified Version" refers to any derivative made by adding to, deleting, 41 | or substituting -- in part or in whole -- any of the components of the 42 | Original Version, by changing formats or by porting the Font Software to a 43 | new environment. 44 | 45 | "Author" refers to any designer, engineer, programmer, technical 46 | writer or other person who contributed to the Font Software. 47 | 48 | PERMISSION & CONDITIONS 49 | Permission is hereby granted, free of charge, to any person obtaining 50 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 51 | redistribute, and sell modified and unmodified copies of the Font 52 | Software, subject to the following conditions: 53 | 54 | 1) Neither the Font Software nor any of its individual components, 55 | in Original or Modified Versions, may be sold by itself. 56 | 57 | 2) Original or Modified Versions of the Font Software may be bundled, 58 | redistributed and/or sold with any software, provided that each copy 59 | contains the above copyright notice and this license. These can be 60 | included either as stand-alone text files, human-readable headers or 61 | in the appropriate machine-readable metadata fields within text or 62 | binary files as long as those fields can be easily viewed by the user. 63 | 64 | 3) No Modified Version of the Font Software may use the Reserved Font 65 | Name(s) unless explicit written permission is granted by the corresponding 66 | Copyright Holder. This restriction only applies to the primary font name as 67 | presented to the users. 68 | 69 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 70 | Software shall not be used to promote, endorse or advertise any 71 | Modified Version, except to acknowledge the contribution(s) of the 72 | Copyright Holder(s) and the Author(s) or with their explicit written 73 | permission. 74 | 75 | 5) The Font Software, modified or unmodified, in part or in whole, 76 | must be distributed entirely under this license, and must not be 77 | distributed under any other license. The requirement for fonts to 78 | remain under this license does not apply to any document created 79 | using the Font Software. 80 | 81 | TERMINATION 82 | This license becomes null and void if any of the above conditions are 83 | not met. 84 | 85 | DISCLAIMER 86 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 87 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 88 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 89 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 90 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 91 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 92 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 93 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 94 | OTHER DEALINGS IN THE FONT SOFTWARE. 95 | -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Courier-Prime.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termux/termux-styling/82dcd3243349d1c5de9a9055b429331d1a01b388/app/src/main/assets/fonts/Courier-Prime.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/D2-Coding.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termux/termux-styling/82dcd3243349d1c5de9a9055b429331d1a01b388/app/src/main/assets/fonts/D2-Coding.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/D2-Coding.txt: -------------------------------------------------------------------------------- 1 | D2Coding fixed-width Korean font. 2 | 3 | Current version used is D2Coding-Ver1.3.2-20180524-ligature.ttf. 4 | 5 | https://github.com/naver/d2codingfont 6 | -------------------------------------------------------------------------------- /app/src/main/assets/fonts/DejaVu-Sans-Mono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termux/termux-styling/82dcd3243349d1c5de9a9055b429331d1a01b388/app/src/main/assets/fonts/DejaVu-Sans-Mono.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Fantasque-Sans-Mono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termux/termux-styling/82dcd3243349d1c5de9a9055b429331d1a01b388/app/src/main/assets/fonts/Fantasque-Sans-Mono.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Fantasque-Sans-Mono.txt: -------------------------------------------------------------------------------- 1 | A font family with a great monospaced variant for programmers. 2 | 3 | https://fontlibrary.org/en/font/fantasque-sans-mono 4 | 5 | Copyright (c) 2013-2017, Jany Belluz (jany.belluz@hotmail.fr) 6 | 7 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 8 | This license is copied below, and is also available with a FAQ at: 9 | http://scripts.sil.org/OFL 10 | 11 | 12 | ----------------------------------------------------------- 13 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 14 | ----------------------------------------------------------- 15 | 16 | PREAMBLE 17 | The goals of the Open Font License (OFL) are to stimulate worldwide 18 | development of collaborative font projects, to support the font creation 19 | efforts of academic and linguistic communities, and to provide a free and 20 | open framework in which fonts may be shared and improved in partnership 21 | with others. 22 | 23 | The OFL allows the licensed fonts to be used, studied, modified and 24 | redistributed freely as long as they are not sold by themselves. The 25 | fonts, including any derivative works, can be bundled, embedded, 26 | redistributed and/or sold with any software provided that any reserved 27 | names are not used by derivative works. The fonts and derivatives, 28 | however, cannot be released under any other type of license. The 29 | requirement for fonts to remain under this license does not apply 30 | to any document created using the fonts or their derivatives. 31 | 32 | DEFINITIONS 33 | "Font Software" refers to the set of files released by the Copyright 34 | Holder(s) under this license and clearly marked as such. This may 35 | include source files, build scripts and documentation. 36 | 37 | "Reserved Font Name" refers to any names specified as such after the 38 | copyright statement(s). 39 | 40 | "Original Version" refers to the collection of Font Software components as 41 | distributed by the Copyright Holder(s). 42 | 43 | "Modified Version" refers to any derivative made by adding to, deleting, 44 | or substituting -- in part or in whole -- any of the components of the 45 | Original Version, by changing formats or by porting the Font Software to a 46 | new environment. 47 | 48 | "Author" refers to any designer, engineer, programmer, technical 49 | writer or other person who contributed to the Font Software. 50 | 51 | PERMISSION & CONDITIONS 52 | Permission is hereby granted, free of charge, to any person obtaining 53 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 54 | redistribute, and sell modified and unmodified copies of the Font 55 | Software, subject to the following conditions: 56 | 57 | 1) Neither the Font Software nor any of its individual components, 58 | in Original or Modified Versions, may be sold by itself. 59 | 60 | 2) Original or Modified Versions of the Font Software may be bundled, 61 | redistributed and/or sold with any software, provided that each copy 62 | contains the above copyright notice and this license. These can be 63 | included either as stand-alone text files, human-readable headers or 64 | in the appropriate machine-readable metadata fields within text or 65 | binary files as long as those fields can be easily viewed by the user. 66 | 67 | 3) No Modified Version of the Font Software may use the Reserved Font 68 | Name(s) unless explicit written permission is granted by the corresponding 69 | Copyright Holder. This restriction only applies to the primary font name as 70 | presented to the users. 71 | 72 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 73 | Software shall not be used to promote, endorse or advertise any 74 | Modified Version, except to acknowledge the contribution(s) of the 75 | Copyright Holder(s) and the Author(s) or with their explicit written 76 | permission. 77 | 78 | 5) The Font Software, modified or unmodified, in part or in whole, 79 | must be distributed entirely under this license, and must not be 80 | distributed under any other license. The requirement for fonts to 81 | remain under this license does not apply to any document created 82 | using the Font Software. 83 | 84 | TERMINATION 85 | This license becomes null and void if any of the above conditions are 86 | not met. 87 | 88 | DISCLAIMER 89 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 90 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 91 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 92 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 93 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 94 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 95 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 96 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 97 | OTHER DEALINGS IN THE FONT SOFTWARE. 98 | -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Fira-Code.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termux/termux-styling/82dcd3243349d1c5de9a9055b429331d1a01b388/app/src/main/assets/fonts/Fira-Code.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Fira-Code.txt: -------------------------------------------------------------------------------- 1 | Monospaced font with programming ligatures by Nikita Prokopov. 2 | 3 | https://github.com/tonsky/FiraCode 4 | 5 | Copyright (c) 2014, Nikita Prokopov http://tonsky.me 6 | with Reserved Font Name Fira Code. 7 | 8 | Copyright (c) 2014, Mozilla Foundation https://mozilla.org/ 9 | with Reserved Font Name Fira Sans. 10 | 11 | Copyright (c) 2014, Mozilla Foundation https://mozilla.org/ 12 | with Reserved Font Name Fira Mono. 13 | 14 | Copyright (c) 2014, Telefonica S.A. 15 | 16 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 17 | This license is copied below, and is also available with a FAQ at: 18 | http://scripts.sil.org/OFL 19 | 20 | 21 | ----------------------------------------------------------- 22 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 23 | ----------------------------------------------------------- 24 | 25 | PREAMBLE 26 | The goals of the Open Font License (OFL) are to stimulate worldwide 27 | development of collaborative font projects, to support the font creation 28 | efforts of academic and linguistic communities, and to provide a free and 29 | open framework in which fonts may be shared and improved in partnership 30 | with others. 31 | 32 | The OFL allows the licensed fonts to be used, studied, modified and 33 | redistributed freely as long as they are not sold by themselves. The 34 | fonts, including any derivative works, can be bundled, embedded, 35 | redistributed and/or sold with any software provided that any reserved 36 | names are not used by derivative works. The fonts and derivatives, 37 | however, cannot be released under any other type of license. The 38 | requirement for fonts to remain under this license does not apply 39 | to any document created using the fonts or their derivatives. 40 | 41 | DEFINITIONS 42 | "Font Software" refers to the set of files released by the Copyright 43 | Holder(s) under this license and clearly marked as such. This may 44 | include source files, build scripts and documentation. 45 | 46 | "Reserved Font Name" refers to any names specified as such after the 47 | copyright statement(s). 48 | 49 | "Original Version" refers to the collection of Font Software components as 50 | distributed by the Copyright Holder(s). 51 | 52 | "Modified Version" refers to any derivative made by adding to, deleting, 53 | or substituting -- in part or in whole -- any of the components of the 54 | Original Version, by changing formats or by porting the Font Software to a 55 | new environment. 56 | 57 | "Author" refers to any designer, engineer, programmer, technical 58 | writer or other person who contributed to the Font Software. 59 | 60 | PERMISSION & CONDITIONS 61 | Permission is hereby granted, free of charge, to any person obtaining 62 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 63 | redistribute, and sell modified and unmodified copies of the Font 64 | Software, subject to the following conditions: 65 | 66 | 1) Neither the Font Software nor any of its individual components, 67 | in Original or Modified Versions, may be sold by itself. 68 | 69 | 2) Original or Modified Versions of the Font Software may be bundled, 70 | redistributed and/or sold with any software, provided that each copy 71 | contains the above copyright notice and this license. These can be 72 | included either as stand-alone text files, human-readable headers or 73 | in the appropriate machine-readable metadata fields within text or 74 | binary files as long as those fields can be easily viewed by the user. 75 | 76 | 3) No Modified Version of the Font Software may use the Reserved Font 77 | Name(s) unless explicit written permission is granted by the corresponding 78 | Copyright Holder. This restriction only applies to the primary font name as 79 | presented to the users. 80 | 81 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 82 | Software shall not be used to promote, endorse or advertise any 83 | Modified Version, except to acknowledge the contribution(s) of the 84 | Copyright Holder(s) and the Author(s) or with their explicit written 85 | permission. 86 | 87 | 5) The Font Software, modified or unmodified, in part or in whole, 88 | must be distributed entirely under this license, and must not be 89 | distributed under any other license. The requirement for fonts to 90 | remain under this license does not apply to any document created 91 | using the Font Software. 92 | 93 | TERMINATION 94 | This license becomes null and void if any of the above conditions are 95 | not met. 96 | 97 | DISCLAIMER 98 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 99 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 100 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 101 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 102 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 103 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 104 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 105 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 106 | OTHER DEALINGS IN THE FONT SOFTWARE. 107 | -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Fira-Mono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termux/termux-styling/82dcd3243349d1c5de9a9055b429331d1a01b388/app/src/main/assets/fonts/Fira-Mono.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/GNU-FreeFont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termux/termux-styling/82dcd3243349d1c5de9a9055b429331d1a01b388/app/src/main/assets/fonts/GNU-FreeFont.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Go-Mono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termux/termux-styling/82dcd3243349d1c5de9a9055b429331d1a01b388/app/src/main/assets/fonts/Go-Mono.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Hack.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termux/termux-styling/82dcd3243349d1c5de9a9055b429331d1a01b388/app/src/main/assets/fonts/Hack.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Hack.txt: -------------------------------------------------------------------------------- 1 | A typeface designed for source code by Chris Simpkins. 2 | 3 | http://sourcefoundry.org/hack/ 4 | 5 | ## License 6 | 7 | Hack Copyright 2015, Christopher Simpkins with Reserved Font Name "Hack". 8 | 9 | Bitstream Vera Sans Mono Copyright 2003 Bitstream Inc. and licensed under the Bitstream Vera License with Reserved Font Names "Bitstream" and "Vera" 10 | 11 | DejaVu modifications of the original Bitstream Vera Sans Mono typeface have been committed to the public domain. 12 | 13 | 14 | 15 | This Font Software is licensed under the Hack Open Font License v2.0 and the Bitstream Vera License. 16 | 17 | These licenses are copied below. 18 | 19 | 20 | ### Hack Open Font License v2.0 21 | 22 | (Version 1.0 - 06 September 2015) 23 | 24 | (Version 2.0 - 27 September 2015) 25 | 26 | Copyright 2015 by Christopher Simpkins. All Rights Reserved. 27 | 28 | DEFINITIONS 29 | 30 | "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. 31 | 32 | PERMISSION AND CONDITIONS 33 | 34 | Permission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license ("Fonts") and associated source code, documentation, and binary files (the "Font Software"), to reproduce and distribute the modifications to the Bitstream Vera Font Software, including without limitation the rights to use, study, copy, merge, embed, modify, redistribute, and/or sell modified or unmodified copies of the Font Software, and to permit persons to whom the Font Software is furnished to do so, subject to the following conditions: 35 | 36 | (1) The above copyright notice and this permission notice shall be included in all modified and unmodified copies of the Font Software typefaces. These notices can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 37 | 38 | (2) The Font Software may be modified, altered, or added to, and in particular the designs of glyphs or characters in the Fonts may be modified and additional glyphs or characters may be added to the Fonts, only if the fonts are renamed to names not containing the word "Hack". 39 | 40 | (3) Neither the Font Software nor any of its individual components, in original or modified versions, may be sold by itself. 41 | 42 | TERMINATION 43 | 44 | This license becomes null and void if any of the above conditions are not met. 45 | 46 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. 47 | 48 | Except as contained in this notice, the names of Christopher Simpkins and the Author(s) of the Font Software shall not be used to promote, endorse or advertise any modified version, except to acknowledge the contribution(s) of Christopher Simpkins and the Author(s) or with their explicit written permission. For further information, contact: chris at sourcefoundry dot org. 49 | 50 | 51 | 52 | ### BITSTREAM VERA LICENSE 53 | 54 | Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is a trademark of Bitstream, Inc. 55 | 56 | Permission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license ("Fonts") and associated documentation files (the "Font Software"), to reproduce and distribute the Font Software, including without limitation the rights to use, copy, merge, publish, distribute, and/or sell copies of the Font Software, and to permit persons to whom the Font Software is furnished to do so, subject to the following conditions: 57 | 58 | The above copyright and trademark notices and this permission notice shall be included in all copies of one or more of the Font Software typefaces. 59 | 60 | The Font Software may be modified, altered, or added to, and in particular the designs of glyphs or characters in the Fonts may be modified and additional glyphs or characters may be added to the Fonts, only if the fonts are renamed to names not containing either the words "Bitstream" or the word "Vera". 61 | 62 | This License becomes null and void to the extent applicable to Fonts or Font Software that has been modified and is distributed under the "Bitstream Vera" names. 63 | 64 | The Font Software may be sold as part of a larger software package but no copy of one or more of the Font Software typefaces may be sold by itself. 65 | 66 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. 67 | 68 | Except as contained in this notice, the names of Gnome, the Gnome Foundation, and Bitstream Inc., shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Font Software without prior written authorization from the Gnome Foundation or Bitstream Inc., respectively. For further information, contact: fonts at gnome dot org. 69 | -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Hermit.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termux/termux-styling/82dcd3243349d1c5de9a9055b429331d1a01b388/app/src/main/assets/fonts/Hermit.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Inconsolata.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termux/termux-styling/82dcd3243349d1c5de9a9055b429331d1a01b388/app/src/main/assets/fonts/Inconsolata.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Iosevka.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termux/termux-styling/82dcd3243349d1c5de9a9055b429331d1a01b388/app/src/main/assets/fonts/Iosevka.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Iosevka.txt: -------------------------------------------------------------------------------- 1 | Slender typeface for code, from code by Belleve Invis. 2 | 3 | https://be5invis.github.io/Iosevka/ 4 | 5 | The font is licensed under SIL OFL Version 1.1. 6 | 7 | The support code is licensed under Berkeley Software Distribution license. 8 | 9 | --- 10 | --- 11 | 12 | Copyright (c) 2015-2017 Belleve Invis (belleve@typeof.net). 13 | 14 | Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 15 | * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 16 | * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 17 | * Neither the name of Belleve Invis nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. 18 | 19 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BELLEVE INVIS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 20 | 21 | ----------------------- 22 | 23 | --- 24 | 25 | Copyright 2015-2017, Belleve Invis (belleve@typeof.net). 26 | 27 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 28 | 29 | This license is copied below, and is also available with a FAQ at: 30 | http://scripts.sil.org/OFL 31 | 32 | -------------------------- 33 | 34 | 35 | SIL Open Font License v1.1 36 | ==================================================== 37 | 38 | 39 | Preamble 40 | ---------- 41 | 42 | The goals of the Open Font License (OFL) are to stimulate worldwide 43 | development of collaborative font projects, to support the font creation 44 | efforts of academic and linguistic communities, and to provide a free and 45 | open framework in which fonts may be shared and improved in partnership 46 | with others. 47 | 48 | The OFL allows the licensed fonts to be used, studied, modified and 49 | redistributed freely as long as they are not sold by themselves. The 50 | fonts, including any derivative works, can be bundled, embedded, 51 | redistributed and/or sold with any software provided that any reserved 52 | names are not used by derivative works. The fonts and derivatives, 53 | however, cannot be released under any other type of license. The 54 | requirement for fonts to remain under this license does not apply 55 | to any document created using the fonts or their derivatives. 56 | 57 | 58 | Definitions 59 | ------------- 60 | 61 | `"Font Software"` refers to the set of files released by the Copyright 62 | Holder(s) under this license and clearly marked as such. This may 63 | include source files, build scripts and documentation. 64 | 65 | `"Reserved Font Name"` refers to any names specified as such after the 66 | copyright statement(s). 67 | 68 | `"Original Version"` refers to the collection of Font Software components as 69 | distributed by the Copyright Holder(s). 70 | 71 | `"Modified Version"` refers to any derivative made by adding to, deleting, 72 | or substituting -- in part or in whole -- any of the components of the 73 | Original Version, by changing formats or by porting the Font Software to a 74 | new environment. 75 | 76 | `"Author"` refers to any designer, engineer, programmer, technical 77 | writer or other person who contributed to the Font Software. 78 | 79 | 80 | Permission & Conditions 81 | ------------------------ 82 | 83 | Permission is hereby granted, free of charge, to any person obtaining 84 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 85 | redistribute, and sell modified and unmodified copies of the Font 86 | Software, subject to the following conditions: 87 | 88 | 1. Neither the Font Software nor any of its individual components, 89 | in Original or Modified Versions, may be sold by itself. 90 | 91 | 2. Original or Modified Versions of the Font Software may be bundled, 92 | redistributed and/or sold with any software, provided that each copy 93 | contains the above copyright notice and this license. These can be 94 | included either as stand-alone text files, human-readable headers or 95 | in the appropriate machine-readable metadata fields within text or 96 | binary files as long as those fields can be easily viewed by the user. 97 | 98 | 3. No Modified Version of the Font Software may use the Reserved Font 99 | Name(s) unless explicit written permission is granted by the corresponding 100 | Copyright Holder. This restriction only applies to the primary font name as 101 | presented to the users. 102 | 103 | 4. The name(s) of the Copyright Holder(s) or the Author(s) of the Font 104 | Software shall not be used to promote, endorse or advertise any 105 | Modified Version, except to acknowledge the contribution(s) of the 106 | Copyright Holder(s) and the Author(s) or with their explicit written 107 | permission. 108 | 109 | 5. The Font Software, modified or unmodified, in part or in whole, 110 | must be distributed entirely under this license, and must not be 111 | distributed under any other license. The requirement for fonts to 112 | remain under this license does not apply to any document created 113 | using the Font Software. 114 | 115 | 116 | 117 | Termination 118 | ----------- 119 | 120 | This license becomes null and void if any of the above conditions are 121 | not met. 122 | 123 | 124 | DISCLAIMER 125 | 126 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 127 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 128 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 129 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 130 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 131 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 132 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 133 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 134 | OTHER DEALINGS IN THE FONT SOFTWARE. 135 | -------------------------------------------------------------------------------- /app/src/main/assets/fonts/JetBrains-Mono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termux/termux-styling/82dcd3243349d1c5de9a9055b429331d1a01b388/app/src/main/assets/fonts/JetBrains-Mono.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/JetBrains-Mono.txt: -------------------------------------------------------------------------------- 1 | JetBrains Mono - A typeface for developers. 2 | 3 | https://www.jetbrains.com/lp/mono/ 4 | 5 | The version used here is JetBrainsMono-Regular.ttf from: 6 | 7 | https://github.com/JetBrains/JetBrainsMono/releases/tag/v1.0.3 8 | -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Liberation-Mono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termux/termux-styling/82dcd3243349d1c5de9a9055b429331d1a01b388/app/src/main/assets/fonts/Liberation-Mono.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Meslo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termux/termux-styling/82dcd3243349d1c5de9a9055b429331d1a01b388/app/src/main/assets/fonts/Meslo.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Meslo.txt: -------------------------------------------------------------------------------- 1 | Customized version of Apple's Menlo font by André Berg. 2 | 3 | https://github.com/andreberg/Meslo-Font 4 | 5 | Copyright 2009, 2010, 2013 André Berg 6 | 7 | Licensed under the Apache License, Version 2.0 (the “License”); 8 | you may not use this file except in compliance with the License. 9 | You may obtain a copy of the License at 10 | 11 | http://www.apache.org/licenses/LICENSE-2.0 12 | 13 | Unless required by applicable law or agreed to in writing, software 14 | distributed under the License is distributed on an “AS IS” BASIS, 15 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | See the License for the specific language governing permissions and 17 | limitations under the License. 18 | -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Monofur.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termux/termux-styling/82dcd3243349d1c5de9a9055b429331d1a01b388/app/src/main/assets/fonts/Monofur.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Monofur.txt: -------------------------------------------------------------------------------- 1 | ------------------------------------------------------------------------ 2 | The monofur typeface by tobias b koehler (unci@tigerden.com) 3 | ------------------------------------------------------------------------ 4 | 5 | This is a monospaced geometric rounded sans serif font based on the 6 | eurofurence typeface family. 7 | 8 | The character set includes Roman, Greek and Cyrillic characters as well 9 | as box drawing characters. File format is TrueType for PC (under 10 | Windows, Linux etc). 11 | 12 | These fonts are freeware and can be distributed as long as they are 13 | together with this text file. I would appreciate it though if you could 14 | contact me at unci@tigerden.com if you put them on a server. Free 15 | samples from commercial users are always very welcome. :) 16 | 17 | For more information, please see the uncifonts WWW page at: 18 | http://mercurio.iet.unipi.it/users/tobias/uncifonts.html 19 | 20 | Have fun! tobias b koehler, 2000-04-02 -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Monoid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termux/termux-styling/82dcd3243349d1c5de9a9055b429331d1a01b388/app/src/main/assets/fonts/Monoid.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/OpenDyslexic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termux/termux-styling/82dcd3243349d1c5de9a9055b429331d1a01b388/app/src/main/assets/fonts/OpenDyslexic.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Roboto-Mono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termux/termux-styling/82dcd3243349d1c5de9a9055b429331d1a01b388/app/src/main/assets/fonts/Roboto-Mono.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Source-Code-Pro.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termux/termux-styling/82dcd3243349d1c5de9a9055b429331d1a01b388/app/src/main/assets/fonts/Source-Code-Pro.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Terminus.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termux/termux-styling/82dcd3243349d1c5de9a9055b429331d1a01b388/app/src/main/assets/fonts/Terminus.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Terminus.txt: -------------------------------------------------------------------------------- 1 | Terminus Font is a clean, fixed width bitmap font, designed for long (8 and more hours per day) work with computers. 2 | 3 | http://terminus-font.sourceforge.net/ 4 | 5 | The font used here is the TTF variant from: 6 | 7 | https://files.ax86.net/terminus-ttf/ 8 | -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Ubuntu-Mono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termux/termux-styling/82dcd3243349d1c5de9a9055b429331d1a01b388/app/src/main/assets/fonts/Ubuntu-Mono.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Ubuntu-Mono.txt: -------------------------------------------------------------------------------- 1 | This is the Ubuntu Font Family. 2 | 3 | It is a unique, custom designed font that has a very distinctive look and feel. 4 | 5 | http://font.ubuntu.com/ 6 | -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Victor-Mono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termux/termux-styling/82dcd3243349d1c5de9a9055b429331d1a01b388/app/src/main/assets/fonts/Victor-Mono.ttf -------------------------------------------------------------------------------- /app/src/main/java/com/termux/styling/TermuxStyleActivity.kt: -------------------------------------------------------------------------------- 1 | package com.termux.styling 2 | 3 | import android.app.Activity 4 | import android.app.AlertDialog 5 | import android.content.Context 6 | import android.content.Intent 7 | import android.os.Bundle 8 | import android.text.SpannableString 9 | import android.text.method.LinkMovementMethod 10 | import android.text.util.Linkify 11 | import android.util.AtomicFile 12 | import android.util.Log 13 | import android.view.View 14 | import android.view.WindowManager 15 | import android.widget.ArrayAdapter 16 | import android.widget.Button 17 | import android.widget.TextView 18 | import android.widget.Toast 19 | import java.io.File 20 | import java.io.IOException 21 | import java.nio.charset.StandardCharsets 22 | import java.util.* 23 | 24 | const val DEFAULT_FILENAME = "Default" 25 | 26 | fun capitalize(str: String): String { 27 | var lastWhitespace = true 28 | val chars = str.toCharArray() 29 | for (i in chars.indices) { 30 | if (Character.isLetter(chars[i])) { 31 | if (lastWhitespace) chars[i] = Character.toUpperCase(chars[i]) 32 | lastWhitespace = false 33 | } else { 34 | lastWhitespace = Character.isWhitespace(chars[i]) 35 | } 36 | } 37 | return String(chars) 38 | } 39 | 40 | class TermuxStyleActivity : Activity() { 41 | 42 | internal class Selectable(val fileName: String) { 43 | val displayName: String 44 | 45 | init { 46 | var name = fileName.replace('-', ' ') 47 | val dotIndex = name.lastIndexOf('.') 48 | if (dotIndex != -1) name = name.substring(0, dotIndex) 49 | 50 | this.displayName = capitalize(name) 51 | } 52 | 53 | override fun toString(): String { 54 | return displayName 55 | } 56 | } 57 | 58 | override fun onCreate(savedInstanceState: Bundle?) { 59 | super.onCreate(savedInstanceState) 60 | 61 | // Avoid dim behind: 62 | window.clearFlags(WindowManager.LayoutParams.FLAG_DIM_BEHIND) 63 | setContentView(R.layout.layout) 64 | 65 | val colorSpinner = findViewById