From 38a78052f8f274790b2c0f2edcae888d9b86dcac Mon Sep 17 00:00:00 2001 From: Dane Williams Date: Fri, 13 Mar 2020 19:19:05 -0700 Subject: [PATCH] test --- .dracula.tmux.swp | Bin 0 -> 12288 bytes README.md | 2 +- dracula.tmux | 26 ++++++++++++++++++++++++++ 3 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 .dracula.tmux.swp create mode 100644 dracula.tmux diff --git a/.dracula.tmux.swp b/.dracula.tmux.swp new file mode 100644 index 0000000000000000000000000000000000000000..2be45dbd7e5ef26aba696b41694da3abfb44f38e GIT binary patch literal 12288 zcmeI2KX21O6u>WtfeZyi7sPZ;hQi=DasD|-2vr0jhDr#jWdohs zgjBAl_m`U=Dr+AJiJ0Iv{I4SmawQvM9km)EYlJcjnKli<%|hW*JE1$2VUclRw0kQt zcX=+gYqH|86DbxJDRXD%h7B%EfI~EZ299T-FtOt=k+#=r+6n5l6}o(3<9Ksn6&gST zXaEhM0W^RH&;S}h11Hje$t&a;bbe~q{iWHtvT&Xa@q`A@02)98XaEhM0W^RH&;S}h z184vZoInFCA|zNMpgY&%k?N4|o9xU=!E?ZUP>F2O2;FXaEhM0W^RH z&;S}h18CsC8raz(Rm}}`Ml^@*%uXOxv=}<*9wGCoN;sUDfE2S=t4PnH>Y zv)idDH15dUBvQ=#XQ4^9r_0!Hg~p?6tMxeU55nH+;gxpff0y*UzQ;OHQlI8%ELCYq zlj?!AhR;yCboc8ZaG3K*fE!x&Om#Ts881JB W>0bK!id$&q28nRF*rox~WAYoTDka7M literal 0 HcmV?d00001 diff --git a/README.md b/README.md index 692532a..a820754 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,2 @@ # tmux-dracula -Dracula theme for tmux :) +Color scheme for tmux inspired by the popular Dracula theme :) diff --git a/dracula.tmux b/dracula.tmux new file mode 100644 index 0000000..1c43316 --- /dev/null +++ b/dracula.tmux @@ -0,0 +1,26 @@ +#!/usr/bin/env bash + +# Dracula inspired color scheme for tmux +# Author: Dane Williams + +main() +{ + # Dracula Color Palette + background_color='#282a36' + current_line_color='#44475a' + foreground_color='#f8f8f2' + comment_color='#6272a4' + cyan='#8be9fd' + green='#50fa7b' + orange='#ffb86c' + pink='#ff79c6' + purple='#bd93f9' + red='#ff5555' + yellow='#f1fa8c' + + tmux set-option -g default-terminal "screen-256color" + + #border for panes + tmux set-option -g pane-border-style fg='#6272a4' + tmux set-option -g pane-active-border-style fg='#ff79c6' +}