├── .github ├── issue_template.md └── pull_request_template.md ├── Dracula.theme ├── INSTALL.md ├── LICENSE ├── README.md ├── screenshot.png └── scripts ├── colortest.sh ├── generate.sh └── palette.conf /.github/issue_template.md: -------------------------------------------------------------------------------- 1 | > If you're reporting an UI issue, make sure you take a screenshot that shows the actual bug. -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | > If you're fixing a UI issue, make sure you take two screenshots. One that shows the actual bug and another that shows how you fixed it. -------------------------------------------------------------------------------- /Dracula.theme: -------------------------------------------------------------------------------- 1 | [Scheme] 2 | Name=Dracula 3 | ColorCursor=#F8F8F2 4 | ColorForeground=#F8F8F2 5 | ColorBackground=#282A36 6 | ColorPalette=#21222C;#FF5555;#50FA7B;#F1FA8C;#BD93F9;#FF79C6;#8BE9FD;#F8F8F2;#6272A4;#FF6E6E;#69FF94;#FFFFA5;#D6ACFF;#FF92DF;#A4FFFF;#FFFFFF 7 | -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- 1 | ### [xfce4-terminal](https://docs.xfce.org/apps/terminal/start) 2 | 3 | #### Install using Git 4 | 5 | If you are a git user, you can install the theme and keep up to date by cloning the repo: 6 | 7 | git clone https://github.com/dracula/xfce4-terminal.git 8 | 9 | #### Install manually 10 | 11 | Download using the [GitHub .zip download](https://github.com/dracula/xfce4-terminal/archive/master.zip) option and unzip them. 12 | 13 | #### Activating theme 14 | 15 | 1. Put `Dracula.theme` in `~/.local/share/xfce4/terminal/colorschemes` -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (C) 2018-2021 Kuangyu Jing 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Dracula for [xfce4-terminal](https://docs.xfce.org/apps/terminal/start) 2 | 3 | > A dark theme for [xfce4-terminal](https://docs.xfce.org/apps/terminal/start). 4 | 5 | ![Screenshot](./screenshot.png) 6 | 7 | ## Install 8 | 9 | All instructions can be found at [draculatheme.com/xfce4-terminal](https://draculatheme.com/xfce4-terminal). 10 | 11 | ## Team 12 | 13 | This theme is maintained by the following person(s) and a bunch of [awesome contributors](https://github.com/dracula/xfce4-terminal/graphs/contributors). 14 | 15 | | [![Kuangyu Jing](https://github.com/kuangyujing.png?size=100)](https://github.com/kuangyujing) | 16 | | ---------------------------------------------------------------------------------------------- | 17 | | [Kuangyu Jing](https://github.com/kuangyujing) | 18 | 19 | ## Community 20 | 21 | - [Twitter](https://twitter.com/draculatheme) - Best for getting updates about themes and new stuff. 22 | - [GitHub](https://github.com/dracula/dracula-theme/discussions) - Best for asking questions and discussing issues. 23 | - [Discord](https://draculatheme.com/discord-invite) - Best for hanging out with the community. 24 | 25 | ## License 26 | 27 | [MIT License](./LICENSE) 28 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/xfce4-terminal/8e037953cf9769c3ff6f261327a9e3145dfeb411/screenshot.png -------------------------------------------------------------------------------- /scripts/colortest.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # This file echoes a bunch of color codes to the 4 | # terminal to demonstrate what's available. Each 5 | # line is the color code of one forground color, 6 | # out of 17 (default + 16 escapes), followed by a 7 | # test use of that color on all nine background 8 | # colors (default + 8 escapes). 9 | # 10 | # Author: Giles Orr 11 | # URL: http://gilesorr.com/bashprompt/howto/c350.html 12 | # License: GNU Free Documentation License, Version 1.1 or any later version published by the Free Software Foundation; 13 | # http://gilesorr.com/bashprompt/howto/a1004.html 14 | 15 | 16 | T='gYw' # The test text 17 | 18 | echo -e "\n 40m 41m 42m 43m\ 19 | 44m 45m 46m 47m"; 20 | 21 | for FGs in ' m' ' 1m' ' 30m' '1;30m' ' 31m' '1;31m' ' 32m' \ 22 | '1;32m' ' 33m' '1;33m' ' 34m' '1;34m' ' 35m' '1;35m' \ 23 | ' 36m' '1;36m' ' 37m' '1;37m'; 24 | do FG=${FGs// /} 25 | echo -en " $FGs \033[$FG $T " 26 | for BG in 40m 41m 42m 43m 44m 45m 46m 47m; 27 | do echo -en "$EINS \033[$FG\033[$BG $T \033[0m"; 28 | done 29 | echo; 30 | done 31 | echo 32 | 33 | echo -e "\e[0mCOLOR_NC (No color)" 34 | echo -e "\e[1;37mCOLOR_WHITE\t\e[0;30mCOLOR_BLACK" 35 | echo -e "\e[0;34mCOLOR_BLUE\t\e[1;34mCOLOR_LIGHT_BLUE" 36 | echo -e "\e[0;32mCOLOR_GREEN\t\e[1;32mCOLOR_LIGHT_GREEN" 37 | echo -e "\e[0;36mCOLOR_CYAN\t\e[1;36mCOLOR_LIGHT_CYAN" 38 | echo -e "\e[0;31mCOLOR_RED\t\e[1;31mCOLOR_LIGHT_RED" 39 | echo -e "\e[0;35mCOLOR_PURPLE\t\e[1;35mCOLOR_LIGHT_PURPLE" 40 | echo -e "\e[0;33mCOLOR_YELLOW\t\e[1;33mCOLOR_LIGHT_YELLOW" 41 | echo -e "\e[1;30mCOLOR_GRAY\t\e[0;37mCOLOR_LIGHT_GRAY" 42 | 43 | # !@#$%^&*()-=><_+[]{}\|;:'"/?.,`~ 44 | -------------------------------------------------------------------------------- /scripts/generate.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | PALETTE_FILE=palette.conf 4 | OUTPUT_FILE=Dracula.theme 5 | 6 | if [ -f $PALETTE_FILE ]; then 7 | . ./$PALETTE_FILE 8 | else 9 | echo $PALETTE_FILE not found. 10 | exit 1 11 | fi 12 | 13 | cat << EOF > $OUTPUT_FILE 14 | [Scheme] 15 | Name=Dracula 16 | ColorCursor=$Foreground 17 | ColorForeground=$Foreground 18 | ColorBackground=$Background 19 | ColorPalette=$AnsiBlack;$AnsiRed;$AnsiGreen;$AnsiYellow;$AnsiBlue;$AnsiMagenta;$AnsiCyan;$AnsiWhite;$AnsiBrightBlack;$AnsiBrightRed;$AnsiBrightGreen;$AnsiBrightYellow;$AnsiBrightBlue;$AnsiBrightMagenta;$AnsiBrightCyan;$AnsiBrightWhite 20 | EOF 21 | 22 | # TODO 23 | # --with-cursor-color 24 | # --with-tab-activity-color 25 | # --with-color-selection-background 26 | 27 | -------------------------------------------------------------------------------- /scripts/palette.conf: -------------------------------------------------------------------------------- 1 | # Dracula theme official colors 2 | 3 | Background=#282A36 4 | Foreground=#F8F8F2 5 | Selection=#44475A 6 | Comment=#6272A4 7 | 8 | Red=#FF5555 9 | Orange=#FFB86C 10 | Yellow=#F1FA8C 11 | Green=#50FA7B 12 | Purple=#BD93F9 13 | Cyan=#8BE9FD 14 | Pink=#FF79C6 15 | 16 | AnsiBlack=#21222C 17 | AnsiRed=#FF5555 18 | AnsiGreen=#50FA7B 19 | AnsiYellow=#F1FA8C 20 | AnsiBlue=#BD93F9 21 | AnsiMagenta=#FF79C6 22 | AnsiCyan=#8BE9FD 23 | AnsiWhite=#F8F8F2 24 | 25 | AnsiBrightBlack=#6272A4 26 | AnsiBrightRed=#FF6E6E 27 | AnsiBrightGreen=#69FF94 28 | AnsiBrightYellow=#FFFFA5 29 | AnsiBrightBlue=#D6ACFF 30 | AnsiBrightMagenta=#FF92DF 31 | AnsiBrightCyan=#A4FFFF 32 | AnsiBrightWhite=#FFFFFF 33 | 34 | # vim: ft=sh 35 | --------------------------------------------------------------------------------