diff --git a/.agignore b/.agignore index 5feca7b..132977f 100644 --- a/.agignore +++ b/.agignore @@ -1,4 +1,4 @@ -**min.js +*min.js *.lock *.locked *.log @@ -7,3 +7,6 @@ log/** tmp/** vendor/** node_modules/** +.git/ +.hg/ +.svn/ diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 0000000..fa391b4 --- /dev/null +++ b/.gitconfig @@ -0,0 +1,34 @@ +[include] + path = .gituser + +[core] + excludesfile = ~/.gitignore_global + pager = diff-so-fancy | less --tabs=2 -RFX + +[alias] + st = status + ci = commit + br = branch + co = checkout + df = diff + pl = pull + ps = push + today = log --stat --since='1 Day Ago' --graph --pretty=oneline --abbrev-commit --date=relative + lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative + lf = !sh -c 'git lg --grep=$1 --max-count=5' - + tree = log --graph --decorate --pretty=oneline --abbrev-commit + patch = !git --no-pager diff --no-color + +[color] + status = always + diff = always + +[push] + default = simple + +[merge] + tool = vimdiff + conflictstyle = diff3 + +[mergetool] + prompt = false diff --git a/.newsbeuter/config b/.newsbeuter/config index 77fffa9..930cec6 100644 --- a/.newsbeuter/config +++ b/.newsbeuter/config @@ -6,23 +6,30 @@ # ---------------------------------------------------------------------- auto-reload yes -browser firefox +browser qutebrowser cleanup-on-quit yes # download-path "/home/moparx/downloads/podcasts" -feed-sort-order title-dec +feed-sort-order firsttag max-downloads 4 notify-always yes -notify-format "newsbeuter: %n unread articles within %f unread feeds" +notify-format "newsboat: %n unread articles within %f unread feeds" notify-program notify-send notify-xterm no notify-screen no -player mplayer +player mpv refresh-on-startup yes reload-time 60 reload-threads 2 #show-read-articles no show-read-feeds yes +prepopulate-query-feeds yes +feedlist-format "%4i %11u %T > %t" + +define-filter "Only query feeds" "feedtitle =~ \"====\"" + + +include "~/.newsboat/nextcloud" # binds ---------------------------------------------------------------- diff --git a/.notion/cfg_notion.lua b/.notion/cfg_notion.lua index 55c0b14..6e30960 100644 --- a/.notion/cfg_notion.lua +++ b/.notion/cfg_notion.lua @@ -22,7 +22,6 @@ --ALTMETA="" -- Terminal emulator. -XTERM="urxvt" -- Some basic settings. ioncore.set{ diff --git a/.notion/cfg_notioncore.lua b/.notion/cfg_notioncore.lua index 8987e23..9b9fcc3 100644 --- a/.notion/cfg_notioncore.lua +++ b/.notion/cfg_notioncore.lua @@ -379,7 +379,7 @@ defbindings("WMoveresMode", { -- Main menu defmenu("mainmenu", { menuentry("Run...", "mod_query.query_exec(_)"), - menuentry("Terminal", "mod_query.exec_on_merr(_, XTERM or 'urxvt')"), + menuentry("Terminal", "mod_query.exec_on_merr(_, XTERM or 'terminal')"), menuentry("Shrug", "mod_query.exec_on_merr(_, shrugger)"), menuentry("Lock screen", "notioncore.exec_on(_, 'locker')"), diff --git a/.notion/cfg_statusbar.lua b/.notion/cfg_statusbar.lua index 32ad87e..9c852ab 100644 --- a/.notion/cfg_statusbar.lua +++ b/.notion/cfg_statusbar.lua @@ -37,7 +37,7 @@ mod_statusbar.create{ -- right, respectively, and %systray is a placeholder for system tray -- windows and icons. -- - template=" %battery %battery_remaining | %load | %mem_available | %filler | %taskwarrior | %pomodoro [ %timelogger ] %systray | %date ", + template=" %battery %battery_remaining | %load | %mem_available | %filler%taskwarrior | %pomodoro [ %timelogger ] %systray | %date ", --template="[ %date || load:% %>load || mail:% %>mail_new/%>mail_total ] %filler%systray", --template="[ %date || load: %05load_1min || mail: %02mail_new/%02mail_total ] %filler%systray", } diff --git a/.notion/look_base16.lua b/.notion/look_base16.lua new file mode 100644 index 0000000..4692b34 --- /dev/null +++ b/.notion/look_base16.lua @@ -0,0 +1,113 @@ +-- look_simpleblue.lua drawing engine configuration file for Notion. + +if not gr.select_engine("de") then return end + +de.reset() + +de.defstyle("*", { + shadow_colour = "black", + highlight_colour = "black", + background_colour = "#1d2021", + foreground_colour = "#d5c4a1", + padding_pixels = 0, + highlight_pixels = 0, + shadow_pixels = 0, + border_style = "elevated", + font = "-*-Fixedsys Excelsior-regular-r-*-*-13-*-*-*-*-*-*", + text_align = "center", +}) + +de.defstyle("frame", { + shadow_colour = "black", + highlight_colour = "#1d2021", + padding_colour = "#1d2021", + background_colour = "black", + foreground_colour = "#1d2021", + padding_pixels = 0, + highlight_pixels = 0, + shadow_pixels = 0, + de.substyle("active", { + shadow_colour = "black", + highlight_colour = "black", + background_colour = "#665c54", + foreground_colour = "#1d2021", + }), +}) + +de.defstyle("tab", { + de.substyle("active-selected", { + shadow_colour = "black", + highlight_colour = "black", + background_colour = "#665c54", + foreground_colour = "#fbf1c7", + }), + --de.substyle("active-unselected", { + --shadow_colour = "black", + --highlight_colour = "black", + --background_colour = "#073642", + --foreground_colour = "#9f9f9f", + --}), + --de.substyle("inactive-selected", { + --shadow_colour = "black", + --highlight_colour = "black", + --background_colour = "#382C1B", + --foreground_colour = "#bfbfbf", + --}), + --de.substyle("inactive-unselected", { + --shadow_colour = "black", + --highlight_colour = "black", + --background_colour = "#073642", + --foreground_colour = "#9f9f9f", + --}), + padding_pixels = 1, + text_align = "left", +}) + +de.defstyle("input", { + shadow_colour = "black", + highlight_colour = "black", + background_colour = "#1d2021", + foreground_colour = "#fbf1c7", + padding_pixels = 1, + highlight_pixels = 0, + shadow_pixels = 0, + border_style = "elevated", + de.substyle("*-cursor", { + background_colour = "#fdf6e3", + foreground_colour = "#1d2021", + }), + de.substyle("*-selection", { + background_colour = "#83a598", + foreground_colour = "#1d2021", + }), +}) + +de.defstyle("input-menu", { + padding_pixels=0, +}) + +de.defstyle("stdisp", { + shadow_pixels = 0, + highlight_pixels = 0, + text_align = "left", + background_colour = "black", + foreground_colour = "#bdae93", + -- font = "-*-Fixedsys Excelsior-regular-r-*-*-13-*-*-*-*-*-*", + font = "-*-Iosevka Term Bold-regular-r-*-*-13-*-*-*-*-*-*", + + de.substyle("important", { + background_colour = "black", + foreground_colour = "#b8bb26", + highlight_colour = "#1d2021", + }), + + de.substyle("critical", { + background_colour = "black", + foreground_colour = "#fb4934", + highlight_colour = "#1d2021", + }), +}) + +-- dopath("lookcommon_clean") + +gr.refresh() diff --git a/.notion/statusd_task b/.notion/statusd_task new file mode 100755 index 0000000..873d6d7 --- /dev/null +++ b/.notion/statusd_task @@ -0,0 +1,11 @@ +#!/bin/bash + +CURRENT_TASK=$(/usr/bin/task active 2>&1 | head -n 4 | tail -n 1 | sed 's/\s\+/ /g') + +if [[ $CURRENT_TASK == 'No matches.' ]]; then + echo '' +else + echo "Task: $CURRENT_TASK" +fi + +exit 0 diff --git a/.notion/statusd_taskwarrior.lua b/.notion/statusd_taskwarrior.lua index 8501771..0cf499c 100644 --- a/.notion/statusd_taskwarrior.lua +++ b/.notion/statusd_taskwarrior.lua @@ -1,5 +1,5 @@ local task_base_settings = { - update_interval = 30*1000, -- every minute + update_interval = 15*1000, -- every 15 seconds } local task_settings = task_base_settings @@ -8,7 +8,7 @@ local task_timer -- Read the active task local function read_task_data () - local f = assert(io.popen("/usr/bin/task statusd limit:1 | head -n 4 | tail -n 1 | sed 's/\s\+/ /g'")) + local f = assert(io.popen("~/.notion/statusd_task")) local data = f:read("*all") f:close() return data @@ -20,6 +20,7 @@ local function inform_task () local task = read_task_data() statusd.inform("taskwarrior", task) + statusd.inform("taskwarrior_hint", "critical") end diff --git a/.notion/statusd_timeledger b/.notion/statusd_timeledger new file mode 100755 index 0000000..1be1b00 --- /dev/null +++ b/.notion/statusd_timeledger @@ -0,0 +1,7 @@ +#!/bin/bash + +CURRENT_TASK=$(cd ~/.work-ledger && ./bin/ledger bal -p today --depth 1 ^Work | sed 's/\s\+/ /g') + +echo $CURRENT_TASK + +exit 0 diff --git a/.nvimrc b/.nvimrc index 4ec9102..4e916a7 100644 --- a/.nvimrc +++ b/.nvimrc @@ -7,12 +7,13 @@ call vundle#begin('$HOME/.config/nvim/bundle') " let Vundle manage Vundle " required! Plugin 'gmarik/Vundle.vim' -" Plugin 'pydave/AsyncCommand' Plugin 'tpope/vim-fugitive' +" Colors +Plugin 'chriskempson/base16-vim' + " Autocomplete Plugin 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' } -" Plugin 'ervandew/supertab' " Plugin 'terryma/vim-multiple-cursors' @@ -20,15 +21,15 @@ Plugin 'Lokaltog/vim-easymotion' " Languages Plugin 'rust-lang/rust.vim' +Plugin 'racer-rust/vim-racer' +Plugin 'vim-ruby/vim-ruby' Plugin 'tpope/vim-rails' Plugin 'tpope/vim-rake' Plugin 'tpope/vim-bundler' Plugin 'ledger/vim-ledger' -Plugin 'kchmck/vim-coffee-script' Plugin 'slim-template/vim-slim' Plugin 'fatih/vim-go' Plugin 'wavded/vim-stylus' -Plugin 'tpope/vim-haml' Plugin 'digitaltoad/vim-jade' Plugin 'Glench/Vim-Jinja2-Syntax' @@ -37,75 +38,58 @@ Plugin 'farseer90718/vim-taskwarrior' Plugin 'majutsushi/tagbar' -Plugin 'L9' -" Plugin 'FuzzyFinder' -" Plugin 'AutoComplPop' +" Plugin 'L9' Plugin 'scrooloose/nerdcommenter' Plugin 'scrooloose/nerdtree' Plugin 'jistr/vim-nerdtree-tabs' -" Plugin 'tpope/vim-rvm' -" Plugin 'vim-scripts/ScreenShot' -Plugin 'vim-scripts/SearchComplete' -Plugin 'MarcWeber/vim-addon-mw-utils' -Plugin 'vim-scripts/tlib' +" Plugin 'vim-scripts/tlib' " Snippets -" Plugin 'garbas/vim-snipmate' Plugin 'Shougo/neosnippet' Plugin 'Shougo/neosnippet-snippets' Plugin 'honza/vim-snippets' -Plugin 'vim-scripts/taglist.vim' - " Appearance Plugin 'vim-airline/vim-airline' Plugin 'vim-airline/vim-airline-themes' -" CVS -Plugin 'phleet/vim-mercenary' - Plugin 'mattn/calendar-vim' Plugin 'vim-scripts/vimwiki' " Plugin 'mhinz/vim-startify' -Plugin 'ngmy/vim-rubocop' +" Plugin 'ngmy/vim-rubocop' Plugin 'editorconfig/editorconfig-vim' Plugin 'tpope/vim-surround' +Plugin 'tpope/vim-unimpaired' +Plugin 'tpope/vim-endwise' +Plugin 'rstacruz/vim-closer' + Plugin 'kien/ctrlp.vim' -" Plugin 'mileszs/ack.vim' -Plugin 'numkil/ag.nvim' +Plugin 'mileszs/ack.vim' Plugin 'godlygeek/tabular' Plugin 'nathanaelkane/vim-indent-guides' -Plugin 'neomake/neomake' +" Linters and syntax stuff +Plugin 'w0rp/ale' +" +" Plugin 'neomake/neomake' " Plugin 'vim-syntastic/syntastic' " Plugin 'syngan/vim-vimlint' " Plugin 'ynkdir/vim-vimlparser' " Plugin 'tpope/vim-dispatch' " Plugin 'whatyouhide/vim-gotham' -Plugin 'altercation/vim-colors-solarized' +" Plugin 'altercation/vim-colors-solarized' Plugin 'airblade/vim-gitgutter' Plugin 'szw/vim-maximizer' Plugin 'kassio/neoterm' call vundle#end() -let wiki = {} -let wiki.path = '~/wiki/' -let wiki.diary_rel_path='journal/' -let wiki.diary_index='journal' -let wiki.diary_header='Journal' -let wiki.syntax = 'markdown' -let wiki.ext = '.md' -"let wiki.auto_export = 1 -let wiki.nested_syntaxes = {'ruby': 'ruby', 'sh': 'sh'} -"let wiki.custom_wiki2html = '~/scripts/vimwiki-md2html.rb' -let g:vimwiki_list = [wiki] -let g:vimwiki_hl_headers = 1 -let g:vimwiki_hl_cb_checked = 1 -let g:vimwiki_ext2syntax = {'.md': 'markdown', '.mkd': 'markdown', '.wiki': 'media'} - -" Disable markdown syntax concealing -let g:vimwiki_conceallevel=0 +" Colorscheme +set t_Co=256 +set termguicolors +set background=dark +let base16colorspace=256 +colorscheme base16-gruvbox-dark-hard " NERD Commenter " Add spaces after comment delimiters by default @@ -148,6 +132,8 @@ function Multiple_cursors_after() endfunction autocmd FileType ruby setlocal omnifunc=rubycomplete#Complete +autocmd FileType ledger setlocal sw=4 ts=4 sts=4 +autocmd FileType rust setlocal sw=4 ts=4 sts=4 " Neocomplete snippets imap (neosnippet_expand_or_jump) @@ -178,40 +164,55 @@ let g:neosnippet#snippets_directory='~/.config/nvim/bundle/vim-snippets/snippets " Neomake " Run NeoMake on read and write operations " autocmd! BufReadPost,BufWritePost * Neomake -autocmd! BufWritePost * Neomake -autocmd BufUnload,BufWinLeave * lclose +" autocmd! BufWritePost * Neomake +" autocmd BufUnload,BufWinLeave * lclose -let g:AutoPairsMultilineClose = 0 +" ALE +" let g:ale_sign_column_always = 1 +let g:airline#extensions#ale#enabled = 1 +let g:ale_list_window_size = 3 +let g:ale_lint_on_text_changed = 'never' +let g:ale_lint_on_enter = 0 +let g:ale_open_list = 1 -let g:neomake_ruby_enabled_makers = ['rubocop', 'reek'] -let g:neomake_open_list = 2 -let g:neomake_list_height = 4 -let g:neomake_serialize = 1 -let g:neomake_serialize_abort_on_error = 1 +" let g:ale_sign_error = 'E>' +" let g:ale_sign_warning = 'W>' +let g:ale_sign_error = '×' +let g:ale_sign_warning = '•' -let g:neomake_error_sign = { - \ 'text': 'E>', - \ 'texthl': 'NeomakeErrorSign', - \ } -let g:neomake_warning_sign = { - \ 'text': 'S>', - \ 'texthl': 'NeomakeWarningSign', - \ } -let g:neomake_info_sign = { - \ 'text': 'I>', - \ 'texthl': 'NeomakeInfoSign', - \ } -let g:neomake_message_sign = { - \ 'text': 'M>', - \ 'texthl': 'NeomakeMsg', - \ } +let g:ale_echo_msg_error_str = 'Error' +let g:ale_echo_msg_warning_str = 'Warning' +let g:ale_echo_msg_format = '[%severity%] %s [%linter%]' -augroup my_neomake_signs - au! - autocmd ColorScheme * - \ hi NeomakeErrorSign ctermfg=red | - \ hi NeomakeWarningSign ctermfg=yellow -augroup END +" let g:neomake_ruby_enabled_makers = ['rubocop', 'reek'] +" let g:neomake_open_list = 2 +" let g:neomake_list_height = 4 +" let g:neomake_serialize = 1 +" let g:neomake_serialize_abort_on_error = 1 +" +" let g:neomake_error_sign = { +" \ 'text': 'E>', +" \ 'texthl': 'NeomakeErrorSign', +" \ } +" let g:neomake_warning_sign = { +" \ 'text': 'S>', +" \ 'texthl': 'NeomakeWarningSign', +" \ } +" let g:neomake_info_sign = { +" \ 'text': 'I>', +" \ 'texthl': 'NeomakeInfoSign', +" \ } +" let g:neomake_message_sign = { +" \ 'text': 'M>', +" \ 'texthl': 'NeomakeMsg', +" \ } +" +" augroup my_neomake_signs +" au! +" autocmd ColorScheme * +" \ hi NeomakeErrorSign ctermfg=red | +" \ hi NeomakeWarningSign ctermfg=yellow +" augroup END let g:EditorConfig_exclude_patterns = ['fugitive://.*', 'scp://.*'] @@ -232,7 +233,13 @@ let g:EditorConfig_exclude_patterns = ['fugitive://.*', 'scp://.*'] " Ack " let g:ack_use_dispatch = 0 " Ag -let g:agprg="ag --vimgrep" +if executable('rg') + let g:ackprg = 'rg --vimgrep' + cnoreabbrev ag Ack + cnoreabbrev aG Ack + cnoreabbrev Ag Ack + cnoreabbrev AG Ack +endif syntax enable filetype plugin indent on @@ -252,6 +259,13 @@ let g:calendar_focus_today = 1 " RustFmt rust let g:rustfmt_autosave = 1 +" Racer +let g:racer_experimental_completer = 1 +au FileType rust nmap gd (rust-def) +au FileType rust nmap gs (rust-def-split) +au FileType rust nmap gx (rust-def-vertical) +au FileType rust nmap gd (rust-doc) + au BufRead,BufNewFile *.jbuilder setf ruby au BufRead,BufNewFile *.rabl setf ruby au BufRead,BufNewFile *.arb setf ruby @@ -262,7 +276,7 @@ au BufRead,BufNewFile *.tag setf coffee " riotjs tags " silent! nmap :FufCoverageFile " " Airline -let g:airline_theme = 'solarized' +let g:airline_theme = 'base16' " let g:airline_section_s = '' " Don't display encoding " let g:airline_section_y = '' " Don't display encoding let g:airline_powerline_fonts = 1 @@ -273,7 +287,6 @@ let g:airline#extensions#tabline#enabled = 1 " Enable airline for tab-bar " let g:airline#extensions#tabline#fnamemod = ':t' " Display only filename in tab " Buffer/Tab navigation -nnoremap p :bp nnoremap h :bp nnoremap n :bn nnoremap l :bn @@ -294,9 +307,11 @@ let g:gitgutter_sign_modified_removed = '█' let g:ctrlp_map = '' let g:ctrlp_cmd = 'CtrlP' -let g:ctrlp_custom_ignore = '\v(node_modules|vendor\/bundle)$' -let g:ctrlp_user_command = ['.git', 'cd %s && git ls-files -co --exclude-standard'] +let g:ctrlp_user_command = "fd --type file --full-path -c never -H -E node_modules -E vendor -E public -E tmp -E log -E .git -E .hg -E .svn -E '*.min.js' -E '*.log' -E '.keep' %s" let g:ctrlp_dont_split = 'NERD' +let g:ctrlp_root_markers = ['Dockerfile', 'gems.locked', 'Gemfile.lock', '.gitignore'] +let g:ctrlp_working_path_mode = 'aw' +let g:ctrlp_use_caching = 0 " Vim maximizer let g:maximizer_default_mapping_key = '' @@ -313,16 +328,42 @@ endfun " tagbar nmap :TagbarToggle +let g:tagbar_type_rust = { + \ 'ctagstype' : 'rust', + \ 'kinds' : [ + \'T:types,type definitions', + \'f:functions,function definitions', + \'g:enum,enumeration names', + \'s:structure names', + \'m:modules,module names', + \'c:consts,static constants', + \'t:traits', + \'i:impls,trait implementations', + \] +\} +let g:tagbar_type_ruby = { + \ 'kinds' : [ + \ 'm:modules', + \ 'c:classes', + \ 'd:describes', + \ 'C:contexts', + \ 'f:methods', + \ 'F:singleton methods' + \ ] +\} " Automatically clean trailing whitespaces on save autocmd BufWritePre *.* :call StripTrailingWhitespaces() +" vim-indent-guides +" let g:indent_guides_enable_on_vim_startup = 1 +" let g:indent_guides_auto_colors = 0 +" let g:indent_guides_guide_size = 1 +" let g:indent_guides_start_level = 2 +" autocmd VimEnter,Colorscheme * :hi IndentGuidesOdd ctermbg=8 +" autocmd VimEnter,Colorscheme * :hi IndentGuidesEven ctermbg=0 + set noswapfile -set background=dark -" colorscheme coldrails -set t_Co=256 -colorscheme solarized -call togglebg#map("") set ofu=syntaxcomplete#Complete set ts=2 " Tabs are 2 spaces @@ -341,14 +382,12 @@ set linebreak set notimeout set ttimeout " set timeoutlen=250 " Time to wait after ESC (default causes an annoying delay) -set synmaxcol=160 +set synmaxcol=200 set incsearch set hlsearch " Highlight searches set ruler " Ruler on -set colorcolumn=+1 - set re=1 " set ttyfast " set lazyredraw @@ -382,8 +421,11 @@ set noerrorbells " No noise. set laststatus=2 " Always show status line. " Invisibles -set list " show invisibles -set listchars=tab:▸\ ,eol:¬ +" set listchars=tab:▸\ ,eol:¬ +set list listchars=tab:▸·,trail:·,nbsp:· + +" Use one space, not two, after punctuation. +set nojoinspaces " inoremap " inoremap diff --git a/.rubocop.yml b/.rubocop.yml index 4902540..5e06016 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -26,6 +26,8 @@ Rails/Date: Metrics/BlockLength: Exclude: - 'spec/**/*_spec.rb' + - 'app/endpoints/**/*.rb' + - '*.gemspec' # Commonly used screens these days easily fit more than 80 characters. Metrics/LineLength: @@ -99,3 +101,6 @@ Style/AndOr: Enabled: true Exclude: - 'app/controllers/**/*' + +Layout/AlignParameters: + Enabled: false diff --git a/.xinitrc b/.xinitrc index 913bc04..56de563 100644 --- a/.xinitrc +++ b/.xinitrc @@ -1,7 +1,7 @@ #!/bin/sh export BROWSER=browser -export XTERM=urxvt +export XTERM=kitty export LANGUAGE=en_US:en_GB:en export LC_TIME=ru_RU.UTF-8 diff --git a/.zshrc b/.zshrc index f2450df..95b5786 100644 --- a/.zshrc +++ b/.zshrc @@ -8,8 +8,8 @@ fi # Lines configured by zsh-newuser-install HISTFILE=~/.histfile -HISTSIZE=1000 -SAVEHIST=1000 +HISTSIZE=2000 +SAVEHIST=2000 #Дописывание файла истории setopt appendhistory diff --git a/.zshrc.d/aliases.zsh b/.zshrc.d/aliases.zsh index 7e2068a..c755d23 100644 --- a/.zshrc.d/aliases.zsh +++ b/.zshrc.d/aliases.zsh @@ -48,3 +48,5 @@ alias gitst="git st" # Ledger alias ledger="noglob ledger" alias "bin/ledger"="noglob bin/ledger" + +alias icat="kitty +kitten icat" diff --git a/.zshrc.d/paths.zsh b/.zshrc.d/paths.zsh new file mode 100644 index 0000000..57b0bdc --- /dev/null +++ b/.zshrc.d/paths.zsh @@ -0,0 +1 @@ +export PATH=$HOME/.joplin-bin/bin:$PATH diff --git a/kitty/colors/base16/base16-3024-256.conf b/kitty/colors/base16/base16-3024-256.conf new file mode 100755 index 0000000..18afb2e --- /dev/null +++ b/kitty/colors/base16/base16-3024-256.conf @@ -0,0 +1,41 @@ +# Base16 3024 - kitty color config +# Jan T. Sott (http://github.com/idleberg) +background #090300 +foreground #a5a2a2 +selection_background #a5a2a2 +selection_foreground #090300 +url_color #807d7c +cursor #a5a2a2 +active_border_color #5c5855 +active_tab_background #090300 +active_tab_foreground #a5a2a2 +inactive_tab_background #3a3432 +inactive_tab_foreground #807d7c + +# normal +color0 #090300 +color1 #db2d20 +color2 #01a252 +color3 #fded02 +color4 #01a0e4 +color5 #a16a94 +color6 #b5e4f4 +color7 #a5a2a2 + +# bright +color8 #5c5855 +color9 #db2d20 +color10 #01a252 +color11 #fded02 +color12 #01a0e4 +color13 #a16a94 +color14 #b5e4f4 +color15 #a5a2a2 + +# extended base16 colors +color16 #e8bbd0 +color17 #cdab53 +color18 #3a3432 +color19 #4a4543 +color20 #807d7c +color21 #d6d5d4 diff --git a/kitty/colors/base16/base16-3024.conf b/kitty/colors/base16/base16-3024.conf new file mode 100755 index 0000000..77c226b --- /dev/null +++ b/kitty/colors/base16/base16-3024.conf @@ -0,0 +1,33 @@ +# Base16 3024 - kitty color config +# Jan T. Sott (http://github.com/idleberg) +background #090300 +foreground #a5a2a2 +selection_background #a5a2a2 +selection_foreground #090300 +url_color #807d7c +cursor #a5a2a2 +active_border_color #5c5855 +active_tab_background #090300 +active_tab_foreground #a5a2a2 +inactive_tab_background #3a3432 +inactive_tab_foreground #807d7c + +# normal +color0 #090300 +color1 #db2d20 +color2 #01a252 +color3 #fded02 +color4 #01a0e4 +color5 #a16a94 +color6 #b5e4f4 +color7 #a5a2a2 + +# bright +color8 #5c5855 +color9 #e8bbd0 +color10 #3a3432 +color11 #4a4543 +color12 #807d7c +color13 #d6d5d4 +color14 #cdab53 +color15 #a5a2a2 diff --git a/kitty/colors/base16/base16-apathy-256.conf b/kitty/colors/base16/base16-apathy-256.conf new file mode 100755 index 0000000..714a88a --- /dev/null +++ b/kitty/colors/base16/base16-apathy-256.conf @@ -0,0 +1,41 @@ +# Base16 Apathy - kitty color config +# Jannik Siebert (https://github.com/janniks) +background #031a16 +foreground #81b5ac +selection_background #81b5ac +selection_foreground #031a16 +url_color #5f9c92 +cursor #81b5ac +active_border_color #2b685e +active_tab_background #031a16 +active_tab_foreground #81b5ac +inactive_tab_background #0b342d +inactive_tab_foreground #5f9c92 + +# normal +color0 #031a16 +color1 #3e9688 +color2 #883e96 +color3 #3e4c96 +color4 #96883e +color5 #4c963e +color6 #963e4c +color7 #81b5ac + +# bright +color8 #2b685e +color9 #3e9688 +color10 #883e96 +color11 #3e4c96 +color12 #96883e +color13 #4c963e +color14 #963e4c +color15 #81b5ac + +# extended base16 colors +color16 #3e7996 +color17 #3e965b +color18 #0b342d +color19 #184e45 +color20 #5f9c92 +color21 #a7cec8 diff --git a/kitty/colors/base16/base16-apathy.conf b/kitty/colors/base16/base16-apathy.conf new file mode 100755 index 0000000..263c093 --- /dev/null +++ b/kitty/colors/base16/base16-apathy.conf @@ -0,0 +1,33 @@ +# Base16 Apathy - kitty color config +# Jannik Siebert (https://github.com/janniks) +background #031a16 +foreground #81b5ac +selection_background #81b5ac +selection_foreground #031a16 +url_color #5f9c92 +cursor #81b5ac +active_border_color #2b685e +active_tab_background #031a16 +active_tab_foreground #81b5ac +inactive_tab_background #0b342d +inactive_tab_foreground #5f9c92 + +# normal +color0 #031a16 +color1 #3e9688 +color2 #883e96 +color3 #3e4c96 +color4 #96883e +color5 #4c963e +color6 #963e4c +color7 #81b5ac + +# bright +color8 #2b685e +color9 #3e7996 +color10 #0b342d +color11 #184e45 +color12 #5f9c92 +color13 #a7cec8 +color14 #3e965b +color15 #81b5ac diff --git a/kitty/colors/base16/base16-ashes-256.conf b/kitty/colors/base16/base16-ashes-256.conf new file mode 100755 index 0000000..aff9c22 --- /dev/null +++ b/kitty/colors/base16/base16-ashes-256.conf @@ -0,0 +1,41 @@ +# Base16 Ashes - kitty color config +# Jannik Siebert (https://github.com/janniks) +background #1c2023 +foreground #c7ccd1 +selection_background #c7ccd1 +selection_foreground #1c2023 +url_color #adb3ba +cursor #c7ccd1 +active_border_color #747c84 +active_tab_background #1c2023 +active_tab_foreground #c7ccd1 +inactive_tab_background #393f45 +inactive_tab_foreground #adb3ba + +# normal +color0 #1c2023 +color1 #c7ae95 +color2 #95c7ae +color3 #aec795 +color4 #ae95c7 +color5 #c795ae +color6 #95aec7 +color7 #c7ccd1 + +# bright +color8 #747c84 +color9 #c7ae95 +color10 #95c7ae +color11 #aec795 +color12 #ae95c7 +color13 #c795ae +color14 #95aec7 +color15 #c7ccd1 + +# extended base16 colors +color16 #c7c795 +color17 #c79595 +color18 #393f45 +color19 #565e65 +color20 #adb3ba +color21 #dfe2e5 diff --git a/kitty/colors/base16/base16-ashes.conf b/kitty/colors/base16/base16-ashes.conf new file mode 100755 index 0000000..ebe7416 --- /dev/null +++ b/kitty/colors/base16/base16-ashes.conf @@ -0,0 +1,33 @@ +# Base16 Ashes - kitty color config +# Jannik Siebert (https://github.com/janniks) +background #1c2023 +foreground #c7ccd1 +selection_background #c7ccd1 +selection_foreground #1c2023 +url_color #adb3ba +cursor #c7ccd1 +active_border_color #747c84 +active_tab_background #1c2023 +active_tab_foreground #c7ccd1 +inactive_tab_background #393f45 +inactive_tab_foreground #adb3ba + +# normal +color0 #1c2023 +color1 #c7ae95 +color2 #95c7ae +color3 #aec795 +color4 #ae95c7 +color5 #c795ae +color6 #95aec7 +color7 #c7ccd1 + +# bright +color8 #747c84 +color9 #c7c795 +color10 #393f45 +color11 #565e65 +color12 #adb3ba +color13 #dfe2e5 +color14 #c79595 +color15 #c7ccd1 diff --git a/kitty/colors/base16/base16-atelier-cave-256.conf b/kitty/colors/base16/base16-atelier-cave-256.conf new file mode 100755 index 0000000..ff98f27 --- /dev/null +++ b/kitty/colors/base16/base16-atelier-cave-256.conf @@ -0,0 +1,41 @@ +# Base16 Atelier Cave - kitty color config +# Bram de Haan (http://atelierbramdehaan.nl) +background #19171c +foreground #8b8792 +selection_background #8b8792 +selection_foreground #19171c +url_color #7e7887 +cursor #8b8792 +active_border_color #655f6d +active_tab_background #19171c +active_tab_foreground #8b8792 +inactive_tab_background #26232a +inactive_tab_foreground #7e7887 + +# normal +color0 #19171c +color1 #be4678 +color2 #2a9292 +color3 #a06e3b +color4 #576ddb +color5 #955ae7 +color6 #398bc6 +color7 #8b8792 + +# bright +color8 #655f6d +color9 #be4678 +color10 #2a9292 +color11 #a06e3b +color12 #576ddb +color13 #955ae7 +color14 #398bc6 +color15 #8b8792 + +# extended base16 colors +color16 #aa573c +color17 #bf40bf +color18 #26232a +color19 #585260 +color20 #7e7887 +color21 #e2dfe7 diff --git a/kitty/colors/base16/base16-atelier-cave-light-256.conf b/kitty/colors/base16/base16-atelier-cave-light-256.conf new file mode 100755 index 0000000..8e741cf --- /dev/null +++ b/kitty/colors/base16/base16-atelier-cave-light-256.conf @@ -0,0 +1,41 @@ +# Base16 Atelier Cave Light - kitty color config +# Bram de Haan (http://atelierbramdehaan.nl) +background #efecf4 +foreground #585260 +selection_background #585260 +selection_foreground #efecf4 +url_color #655f6d +cursor #585260 +active_border_color #7e7887 +active_tab_background #efecf4 +active_tab_foreground #585260 +inactive_tab_background #e2dfe7 +inactive_tab_foreground #655f6d + +# normal +color0 #efecf4 +color1 #be4678 +color2 #2a9292 +color3 #a06e3b +color4 #576ddb +color5 #955ae7 +color6 #398bc6 +color7 #585260 + +# bright +color8 #7e7887 +color9 #be4678 +color10 #2a9292 +color11 #a06e3b +color12 #576ddb +color13 #955ae7 +color14 #398bc6 +color15 #585260 + +# extended base16 colors +color16 #aa573c +color17 #bf40bf +color18 #e2dfe7 +color19 #8b8792 +color20 #655f6d +color21 #26232a diff --git a/kitty/colors/base16/base16-atelier-cave-light.conf b/kitty/colors/base16/base16-atelier-cave-light.conf new file mode 100755 index 0000000..ccaa5a8 --- /dev/null +++ b/kitty/colors/base16/base16-atelier-cave-light.conf @@ -0,0 +1,33 @@ +# Base16 Atelier Cave Light - kitty color config +# Bram de Haan (http://atelierbramdehaan.nl) +background #efecf4 +foreground #585260 +selection_background #585260 +selection_foreground #efecf4 +url_color #655f6d +cursor #585260 +active_border_color #7e7887 +active_tab_background #efecf4 +active_tab_foreground #585260 +inactive_tab_background #e2dfe7 +inactive_tab_foreground #655f6d + +# normal +color0 #efecf4 +color1 #be4678 +color2 #2a9292 +color3 #a06e3b +color4 #576ddb +color5 #955ae7 +color6 #398bc6 +color7 #585260 + +# bright +color8 #7e7887 +color9 #aa573c +color10 #e2dfe7 +color11 #8b8792 +color12 #655f6d +color13 #26232a +color14 #bf40bf +color15 #585260 diff --git a/kitty/colors/base16/base16-atelier-cave.conf b/kitty/colors/base16/base16-atelier-cave.conf new file mode 100755 index 0000000..ef71bcf --- /dev/null +++ b/kitty/colors/base16/base16-atelier-cave.conf @@ -0,0 +1,33 @@ +# Base16 Atelier Cave - kitty color config +# Bram de Haan (http://atelierbramdehaan.nl) +background #19171c +foreground #8b8792 +selection_background #8b8792 +selection_foreground #19171c +url_color #7e7887 +cursor #8b8792 +active_border_color #655f6d +active_tab_background #19171c +active_tab_foreground #8b8792 +inactive_tab_background #26232a +inactive_tab_foreground #7e7887 + +# normal +color0 #19171c +color1 #be4678 +color2 #2a9292 +color3 #a06e3b +color4 #576ddb +color5 #955ae7 +color6 #398bc6 +color7 #8b8792 + +# bright +color8 #655f6d +color9 #aa573c +color10 #26232a +color11 #585260 +color12 #7e7887 +color13 #e2dfe7 +color14 #bf40bf +color15 #8b8792 diff --git a/kitty/colors/base16/base16-atelier-dune-256.conf b/kitty/colors/base16/base16-atelier-dune-256.conf new file mode 100755 index 0000000..a73bac9 --- /dev/null +++ b/kitty/colors/base16/base16-atelier-dune-256.conf @@ -0,0 +1,41 @@ +# Base16 Atelier Dune - kitty color config +# Bram de Haan (http://atelierbramdehaan.nl) +background #20201d +foreground #a6a28c +selection_background #a6a28c +selection_foreground #20201d +url_color #999580 +cursor #a6a28c +active_border_color #7d7a68 +active_tab_background #20201d +active_tab_foreground #a6a28c +inactive_tab_background #292824 +inactive_tab_foreground #999580 + +# normal +color0 #20201d +color1 #d73737 +color2 #60ac39 +color3 #ae9513 +color4 #6684e1 +color5 #b854d4 +color6 #1fad83 +color7 #a6a28c + +# bright +color8 #7d7a68 +color9 #d73737 +color10 #60ac39 +color11 #ae9513 +color12 #6684e1 +color13 #b854d4 +color14 #1fad83 +color15 #a6a28c + +# extended base16 colors +color16 #b65611 +color17 #d43552 +color18 #292824 +color19 #6e6b5e +color20 #999580 +color21 #e8e4cf diff --git a/kitty/colors/base16/base16-atelier-dune-light-256.conf b/kitty/colors/base16/base16-atelier-dune-light-256.conf new file mode 100755 index 0000000..af9b0bd --- /dev/null +++ b/kitty/colors/base16/base16-atelier-dune-light-256.conf @@ -0,0 +1,41 @@ +# Base16 Atelier Dune Light - kitty color config +# Bram de Haan (http://atelierbramdehaan.nl) +background #fefbec +foreground #6e6b5e +selection_background #6e6b5e +selection_foreground #fefbec +url_color #7d7a68 +cursor #6e6b5e +active_border_color #999580 +active_tab_background #fefbec +active_tab_foreground #6e6b5e +inactive_tab_background #e8e4cf +inactive_tab_foreground #7d7a68 + +# normal +color0 #fefbec +color1 #d73737 +color2 #60ac39 +color3 #ae9513 +color4 #6684e1 +color5 #b854d4 +color6 #1fad83 +color7 #6e6b5e + +# bright +color8 #999580 +color9 #d73737 +color10 #60ac39 +color11 #ae9513 +color12 #6684e1 +color13 #b854d4 +color14 #1fad83 +color15 #6e6b5e + +# extended base16 colors +color16 #b65611 +color17 #d43552 +color18 #e8e4cf +color19 #a6a28c +color20 #7d7a68 +color21 #292824 diff --git a/kitty/colors/base16/base16-atelier-dune-light.conf b/kitty/colors/base16/base16-atelier-dune-light.conf new file mode 100755 index 0000000..a060809 --- /dev/null +++ b/kitty/colors/base16/base16-atelier-dune-light.conf @@ -0,0 +1,33 @@ +# Base16 Atelier Dune Light - kitty color config +# Bram de Haan (http://atelierbramdehaan.nl) +background #fefbec +foreground #6e6b5e +selection_background #6e6b5e +selection_foreground #fefbec +url_color #7d7a68 +cursor #6e6b5e +active_border_color #999580 +active_tab_background #fefbec +active_tab_foreground #6e6b5e +inactive_tab_background #e8e4cf +inactive_tab_foreground #7d7a68 + +# normal +color0 #fefbec +color1 #d73737 +color2 #60ac39 +color3 #ae9513 +color4 #6684e1 +color5 #b854d4 +color6 #1fad83 +color7 #6e6b5e + +# bright +color8 #999580 +color9 #b65611 +color10 #e8e4cf +color11 #a6a28c +color12 #7d7a68 +color13 #292824 +color14 #d43552 +color15 #6e6b5e diff --git a/kitty/colors/base16/base16-atelier-dune.conf b/kitty/colors/base16/base16-atelier-dune.conf new file mode 100755 index 0000000..0a222fb --- /dev/null +++ b/kitty/colors/base16/base16-atelier-dune.conf @@ -0,0 +1,33 @@ +# Base16 Atelier Dune - kitty color config +# Bram de Haan (http://atelierbramdehaan.nl) +background #20201d +foreground #a6a28c +selection_background #a6a28c +selection_foreground #20201d +url_color #999580 +cursor #a6a28c +active_border_color #7d7a68 +active_tab_background #20201d +active_tab_foreground #a6a28c +inactive_tab_background #292824 +inactive_tab_foreground #999580 + +# normal +color0 #20201d +color1 #d73737 +color2 #60ac39 +color3 #ae9513 +color4 #6684e1 +color5 #b854d4 +color6 #1fad83 +color7 #a6a28c + +# bright +color8 #7d7a68 +color9 #b65611 +color10 #292824 +color11 #6e6b5e +color12 #999580 +color13 #e8e4cf +color14 #d43552 +color15 #a6a28c diff --git a/kitty/colors/base16/base16-atelier-estuary-256.conf b/kitty/colors/base16/base16-atelier-estuary-256.conf new file mode 100755 index 0000000..9f24cc3 --- /dev/null +++ b/kitty/colors/base16/base16-atelier-estuary-256.conf @@ -0,0 +1,41 @@ +# Base16 Atelier Estuary - kitty color config +# Bram de Haan (http://atelierbramdehaan.nl) +background #22221b +foreground #929181 +selection_background #929181 +selection_foreground #22221b +url_color #878573 +cursor #929181 +active_border_color #6c6b5a +active_tab_background #22221b +active_tab_foreground #929181 +inactive_tab_background #302f27 +inactive_tab_foreground #878573 + +# normal +color0 #22221b +color1 #ba6236 +color2 #7d9726 +color3 #a5980d +color4 #36a166 +color5 #5f9182 +color6 #5b9d48 +color7 #929181 + +# bright +color8 #6c6b5a +color9 #ba6236 +color10 #7d9726 +color11 #a5980d +color12 #36a166 +color13 #5f9182 +color14 #5b9d48 +color15 #929181 + +# extended base16 colors +color16 #ae7313 +color17 #9d6c7c +color18 #302f27 +color19 #5f5e4e +color20 #878573 +color21 #e7e6df diff --git a/kitty/colors/base16/base16-atelier-estuary-light-256.conf b/kitty/colors/base16/base16-atelier-estuary-light-256.conf new file mode 100755 index 0000000..137a3be --- /dev/null +++ b/kitty/colors/base16/base16-atelier-estuary-light-256.conf @@ -0,0 +1,41 @@ +# Base16 Atelier Estuary Light - kitty color config +# Bram de Haan (http://atelierbramdehaan.nl) +background #f4f3ec +foreground #5f5e4e +selection_background #5f5e4e +selection_foreground #f4f3ec +url_color #6c6b5a +cursor #5f5e4e +active_border_color #878573 +active_tab_background #f4f3ec +active_tab_foreground #5f5e4e +inactive_tab_background #e7e6df +inactive_tab_foreground #6c6b5a + +# normal +color0 #f4f3ec +color1 #ba6236 +color2 #7d9726 +color3 #a5980d +color4 #36a166 +color5 #5f9182 +color6 #5b9d48 +color7 #5f5e4e + +# bright +color8 #878573 +color9 #ba6236 +color10 #7d9726 +color11 #a5980d +color12 #36a166 +color13 #5f9182 +color14 #5b9d48 +color15 #5f5e4e + +# extended base16 colors +color16 #ae7313 +color17 #9d6c7c +color18 #e7e6df +color19 #929181 +color20 #6c6b5a +color21 #302f27 diff --git a/kitty/colors/base16/base16-atelier-estuary-light.conf b/kitty/colors/base16/base16-atelier-estuary-light.conf new file mode 100755 index 0000000..4508b52 --- /dev/null +++ b/kitty/colors/base16/base16-atelier-estuary-light.conf @@ -0,0 +1,33 @@ +# Base16 Atelier Estuary Light - kitty color config +# Bram de Haan (http://atelierbramdehaan.nl) +background #f4f3ec +foreground #5f5e4e +selection_background #5f5e4e +selection_foreground #f4f3ec +url_color #6c6b5a +cursor #5f5e4e +active_border_color #878573 +active_tab_background #f4f3ec +active_tab_foreground #5f5e4e +inactive_tab_background #e7e6df +inactive_tab_foreground #6c6b5a + +# normal +color0 #f4f3ec +color1 #ba6236 +color2 #7d9726 +color3 #a5980d +color4 #36a166 +color5 #5f9182 +color6 #5b9d48 +color7 #5f5e4e + +# bright +color8 #878573 +color9 #ae7313 +color10 #e7e6df +color11 #929181 +color12 #6c6b5a +color13 #302f27 +color14 #9d6c7c +color15 #5f5e4e diff --git a/kitty/colors/base16/base16-atelier-estuary.conf b/kitty/colors/base16/base16-atelier-estuary.conf new file mode 100755 index 0000000..ff789f8 --- /dev/null +++ b/kitty/colors/base16/base16-atelier-estuary.conf @@ -0,0 +1,33 @@ +# Base16 Atelier Estuary - kitty color config +# Bram de Haan (http://atelierbramdehaan.nl) +background #22221b +foreground #929181 +selection_background #929181 +selection_foreground #22221b +url_color #878573 +cursor #929181 +active_border_color #6c6b5a +active_tab_background #22221b +active_tab_foreground #929181 +inactive_tab_background #302f27 +inactive_tab_foreground #878573 + +# normal +color0 #22221b +color1 #ba6236 +color2 #7d9726 +color3 #a5980d +color4 #36a166 +color5 #5f9182 +color6 #5b9d48 +color7 #929181 + +# bright +color8 #6c6b5a +color9 #ae7313 +color10 #302f27 +color11 #5f5e4e +color12 #878573 +color13 #e7e6df +color14 #9d6c7c +color15 #929181 diff --git a/kitty/colors/base16/base16-atelier-forest-256.conf b/kitty/colors/base16/base16-atelier-forest-256.conf new file mode 100755 index 0000000..0b84a78 --- /dev/null +++ b/kitty/colors/base16/base16-atelier-forest-256.conf @@ -0,0 +1,41 @@ +# Base16 Atelier Forest - kitty color config +# Bram de Haan (http://atelierbramdehaan.nl) +background #1b1918 +foreground #a8a19f +selection_background #a8a19f +selection_foreground #1b1918 +url_color #9c9491 +cursor #a8a19f +active_border_color #766e6b +active_tab_background #1b1918 +active_tab_foreground #a8a19f +inactive_tab_background #2c2421 +inactive_tab_foreground #9c9491 + +# normal +color0 #1b1918 +color1 #f22c40 +color2 #7b9726 +color3 #c38418 +color4 #407ee7 +color5 #6666ea +color6 #3d97b8 +color7 #a8a19f + +# bright +color8 #766e6b +color9 #f22c40 +color10 #7b9726 +color11 #c38418 +color12 #407ee7 +color13 #6666ea +color14 #3d97b8 +color15 #a8a19f + +# extended base16 colors +color16 #df5320 +color17 #c33ff3 +color18 #2c2421 +color19 #68615e +color20 #9c9491 +color21 #e6e2e0 diff --git a/kitty/colors/base16/base16-atelier-forest-light-256.conf b/kitty/colors/base16/base16-atelier-forest-light-256.conf new file mode 100755 index 0000000..c8d4e5e --- /dev/null +++ b/kitty/colors/base16/base16-atelier-forest-light-256.conf @@ -0,0 +1,41 @@ +# Base16 Atelier Forest Light - kitty color config +# Bram de Haan (http://atelierbramdehaan.nl) +background #f1efee +foreground #68615e +selection_background #68615e +selection_foreground #f1efee +url_color #766e6b +cursor #68615e +active_border_color #9c9491 +active_tab_background #f1efee +active_tab_foreground #68615e +inactive_tab_background #e6e2e0 +inactive_tab_foreground #766e6b + +# normal +color0 #f1efee +color1 #f22c40 +color2 #7b9726 +color3 #c38418 +color4 #407ee7 +color5 #6666ea +color6 #3d97b8 +color7 #68615e + +# bright +color8 #9c9491 +color9 #f22c40 +color10 #7b9726 +color11 #c38418 +color12 #407ee7 +color13 #6666ea +color14 #3d97b8 +color15 #68615e + +# extended base16 colors +color16 #df5320 +color17 #c33ff3 +color18 #e6e2e0 +color19 #a8a19f +color20 #766e6b +color21 #2c2421 diff --git a/kitty/colors/base16/base16-atelier-forest-light.conf b/kitty/colors/base16/base16-atelier-forest-light.conf new file mode 100755 index 0000000..dce9f49 --- /dev/null +++ b/kitty/colors/base16/base16-atelier-forest-light.conf @@ -0,0 +1,33 @@ +# Base16 Atelier Forest Light - kitty color config +# Bram de Haan (http://atelierbramdehaan.nl) +background #f1efee +foreground #68615e +selection_background #68615e +selection_foreground #f1efee +url_color #766e6b +cursor #68615e +active_border_color #9c9491 +active_tab_background #f1efee +active_tab_foreground #68615e +inactive_tab_background #e6e2e0 +inactive_tab_foreground #766e6b + +# normal +color0 #f1efee +color1 #f22c40 +color2 #7b9726 +color3 #c38418 +color4 #407ee7 +color5 #6666ea +color6 #3d97b8 +color7 #68615e + +# bright +color8 #9c9491 +color9 #df5320 +color10 #e6e2e0 +color11 #a8a19f +color12 #766e6b +color13 #2c2421 +color14 #c33ff3 +color15 #68615e diff --git a/kitty/colors/base16/base16-atelier-forest.conf b/kitty/colors/base16/base16-atelier-forest.conf new file mode 100755 index 0000000..49005b6 --- /dev/null +++ b/kitty/colors/base16/base16-atelier-forest.conf @@ -0,0 +1,33 @@ +# Base16 Atelier Forest - kitty color config +# Bram de Haan (http://atelierbramdehaan.nl) +background #1b1918 +foreground #a8a19f +selection_background #a8a19f +selection_foreground #1b1918 +url_color #9c9491 +cursor #a8a19f +active_border_color #766e6b +active_tab_background #1b1918 +active_tab_foreground #a8a19f +inactive_tab_background #2c2421 +inactive_tab_foreground #9c9491 + +# normal +color0 #1b1918 +color1 #f22c40 +color2 #7b9726 +color3 #c38418 +color4 #407ee7 +color5 #6666ea +color6 #3d97b8 +color7 #a8a19f + +# bright +color8 #766e6b +color9 #df5320 +color10 #2c2421 +color11 #68615e +color12 #9c9491 +color13 #e6e2e0 +color14 #c33ff3 +color15 #a8a19f diff --git a/kitty/colors/base16/base16-atelier-heath-256.conf b/kitty/colors/base16/base16-atelier-heath-256.conf new file mode 100755 index 0000000..66650b0 --- /dev/null +++ b/kitty/colors/base16/base16-atelier-heath-256.conf @@ -0,0 +1,41 @@ +# Base16 Atelier Heath - kitty color config +# Bram de Haan (http://atelierbramdehaan.nl) +background #1b181b +foreground #ab9bab +selection_background #ab9bab +selection_foreground #1b181b +url_color #9e8f9e +cursor #ab9bab +active_border_color #776977 +active_tab_background #1b181b +active_tab_foreground #ab9bab +inactive_tab_background #292329 +inactive_tab_foreground #9e8f9e + +# normal +color0 #1b181b +color1 #ca402b +color2 #918b3b +color3 #bb8a35 +color4 #516aec +color5 #7b59c0 +color6 #159393 +color7 #ab9bab + +# bright +color8 #776977 +color9 #ca402b +color10 #918b3b +color11 #bb8a35 +color12 #516aec +color13 #7b59c0 +color14 #159393 +color15 #ab9bab + +# extended base16 colors +color16 #a65926 +color17 #cc33cc +color18 #292329 +color19 #695d69 +color20 #9e8f9e +color21 #d8cad8 diff --git a/kitty/colors/base16/base16-atelier-heath-light-256.conf b/kitty/colors/base16/base16-atelier-heath-light-256.conf new file mode 100755 index 0000000..f91cec7 --- /dev/null +++ b/kitty/colors/base16/base16-atelier-heath-light-256.conf @@ -0,0 +1,41 @@ +# Base16 Atelier Heath Light - kitty color config +# Bram de Haan (http://atelierbramdehaan.nl) +background #f7f3f7 +foreground #695d69 +selection_background #695d69 +selection_foreground #f7f3f7 +url_color #776977 +cursor #695d69 +active_border_color #9e8f9e +active_tab_background #f7f3f7 +active_tab_foreground #695d69 +inactive_tab_background #d8cad8 +inactive_tab_foreground #776977 + +# normal +color0 #f7f3f7 +color1 #ca402b +color2 #918b3b +color3 #bb8a35 +color4 #516aec +color5 #7b59c0 +color6 #159393 +color7 #695d69 + +# bright +color8 #9e8f9e +color9 #ca402b +color10 #918b3b +color11 #bb8a35 +color12 #516aec +color13 #7b59c0 +color14 #159393 +color15 #695d69 + +# extended base16 colors +color16 #a65926 +color17 #cc33cc +color18 #d8cad8 +color19 #ab9bab +color20 #776977 +color21 #292329 diff --git a/kitty/colors/base16/base16-atelier-heath-light.conf b/kitty/colors/base16/base16-atelier-heath-light.conf new file mode 100755 index 0000000..7349a42 --- /dev/null +++ b/kitty/colors/base16/base16-atelier-heath-light.conf @@ -0,0 +1,33 @@ +# Base16 Atelier Heath Light - kitty color config +# Bram de Haan (http://atelierbramdehaan.nl) +background #f7f3f7 +foreground #695d69 +selection_background #695d69 +selection_foreground #f7f3f7 +url_color #776977 +cursor #695d69 +active_border_color #9e8f9e +active_tab_background #f7f3f7 +active_tab_foreground #695d69 +inactive_tab_background #d8cad8 +inactive_tab_foreground #776977 + +# normal +color0 #f7f3f7 +color1 #ca402b +color2 #918b3b +color3 #bb8a35 +color4 #516aec +color5 #7b59c0 +color6 #159393 +color7 #695d69 + +# bright +color8 #9e8f9e +color9 #a65926 +color10 #d8cad8 +color11 #ab9bab +color12 #776977 +color13 #292329 +color14 #cc33cc +color15 #695d69 diff --git a/kitty/colors/base16/base16-atelier-heath.conf b/kitty/colors/base16/base16-atelier-heath.conf new file mode 100755 index 0000000..f14ef52 --- /dev/null +++ b/kitty/colors/base16/base16-atelier-heath.conf @@ -0,0 +1,33 @@ +# Base16 Atelier Heath - kitty color config +# Bram de Haan (http://atelierbramdehaan.nl) +background #1b181b +foreground #ab9bab +selection_background #ab9bab +selection_foreground #1b181b +url_color #9e8f9e +cursor #ab9bab +active_border_color #776977 +active_tab_background #1b181b +active_tab_foreground #ab9bab +inactive_tab_background #292329 +inactive_tab_foreground #9e8f9e + +# normal +color0 #1b181b +color1 #ca402b +color2 #918b3b +color3 #bb8a35 +color4 #516aec +color5 #7b59c0 +color6 #159393 +color7 #ab9bab + +# bright +color8 #776977 +color9 #a65926 +color10 #292329 +color11 #695d69 +color12 #9e8f9e +color13 #d8cad8 +color14 #cc33cc +color15 #ab9bab diff --git a/kitty/colors/base16/base16-atelier-lakeside-256.conf b/kitty/colors/base16/base16-atelier-lakeside-256.conf new file mode 100755 index 0000000..ec00e76 --- /dev/null +++ b/kitty/colors/base16/base16-atelier-lakeside-256.conf @@ -0,0 +1,41 @@ +# Base16 Atelier Lakeside - kitty color config +# Bram de Haan (http://atelierbramdehaan.nl) +background #161b1d +foreground #7ea2b4 +selection_background #7ea2b4 +selection_foreground #161b1d +url_color #7195a8 +cursor #7ea2b4 +active_border_color #5a7b8c +active_tab_background #161b1d +active_tab_foreground #7ea2b4 +inactive_tab_background #1f292e +inactive_tab_foreground #7195a8 + +# normal +color0 #161b1d +color1 #d22d72 +color2 #568c3b +color3 #8a8a0f +color4 #257fad +color5 #6b6bb8 +color6 #2d8f6f +color7 #7ea2b4 + +# bright +color8 #5a7b8c +color9 #d22d72 +color10 #568c3b +color11 #8a8a0f +color12 #257fad +color13 #6b6bb8 +color14 #2d8f6f +color15 #7ea2b4 + +# extended base16 colors +color16 #935c25 +color17 #b72dd2 +color18 #1f292e +color19 #516d7b +color20 #7195a8 +color21 #c1e4f6 diff --git a/kitty/colors/base16/base16-atelier-lakeside-light-256.conf b/kitty/colors/base16/base16-atelier-lakeside-light-256.conf new file mode 100755 index 0000000..a077f68 --- /dev/null +++ b/kitty/colors/base16/base16-atelier-lakeside-light-256.conf @@ -0,0 +1,41 @@ +# Base16 Atelier Lakeside Light - kitty color config +# Bram de Haan (http://atelierbramdehaan.nl) +background #ebf8ff +foreground #516d7b +selection_background #516d7b +selection_foreground #ebf8ff +url_color #5a7b8c +cursor #516d7b +active_border_color #7195a8 +active_tab_background #ebf8ff +active_tab_foreground #516d7b +inactive_tab_background #c1e4f6 +inactive_tab_foreground #5a7b8c + +# normal +color0 #ebf8ff +color1 #d22d72 +color2 #568c3b +color3 #8a8a0f +color4 #257fad +color5 #6b6bb8 +color6 #2d8f6f +color7 #516d7b + +# bright +color8 #7195a8 +color9 #d22d72 +color10 #568c3b +color11 #8a8a0f +color12 #257fad +color13 #6b6bb8 +color14 #2d8f6f +color15 #516d7b + +# extended base16 colors +color16 #935c25 +color17 #b72dd2 +color18 #c1e4f6 +color19 #7ea2b4 +color20 #5a7b8c +color21 #1f292e diff --git a/kitty/colors/base16/base16-atelier-lakeside-light.conf b/kitty/colors/base16/base16-atelier-lakeside-light.conf new file mode 100755 index 0000000..117650f --- /dev/null +++ b/kitty/colors/base16/base16-atelier-lakeside-light.conf @@ -0,0 +1,33 @@ +# Base16 Atelier Lakeside Light - kitty color config +# Bram de Haan (http://atelierbramdehaan.nl) +background #ebf8ff +foreground #516d7b +selection_background #516d7b +selection_foreground #ebf8ff +url_color #5a7b8c +cursor #516d7b +active_border_color #7195a8 +active_tab_background #ebf8ff +active_tab_foreground #516d7b +inactive_tab_background #c1e4f6 +inactive_tab_foreground #5a7b8c + +# normal +color0 #ebf8ff +color1 #d22d72 +color2 #568c3b +color3 #8a8a0f +color4 #257fad +color5 #6b6bb8 +color6 #2d8f6f +color7 #516d7b + +# bright +color8 #7195a8 +color9 #935c25 +color10 #c1e4f6 +color11 #7ea2b4 +color12 #5a7b8c +color13 #1f292e +color14 #b72dd2 +color15 #516d7b diff --git a/kitty/colors/base16/base16-atelier-lakeside.conf b/kitty/colors/base16/base16-atelier-lakeside.conf new file mode 100755 index 0000000..023ffd0 --- /dev/null +++ b/kitty/colors/base16/base16-atelier-lakeside.conf @@ -0,0 +1,33 @@ +# Base16 Atelier Lakeside - kitty color config +# Bram de Haan (http://atelierbramdehaan.nl) +background #161b1d +foreground #7ea2b4 +selection_background #7ea2b4 +selection_foreground #161b1d +url_color #7195a8 +cursor #7ea2b4 +active_border_color #5a7b8c +active_tab_background #161b1d +active_tab_foreground #7ea2b4 +inactive_tab_background #1f292e +inactive_tab_foreground #7195a8 + +# normal +color0 #161b1d +color1 #d22d72 +color2 #568c3b +color3 #8a8a0f +color4 #257fad +color5 #6b6bb8 +color6 #2d8f6f +color7 #7ea2b4 + +# bright +color8 #5a7b8c +color9 #935c25 +color10 #1f292e +color11 #516d7b +color12 #7195a8 +color13 #c1e4f6 +color14 #b72dd2 +color15 #7ea2b4 diff --git a/kitty/colors/base16/base16-atelier-plateau-256.conf b/kitty/colors/base16/base16-atelier-plateau-256.conf new file mode 100755 index 0000000..83629cd --- /dev/null +++ b/kitty/colors/base16/base16-atelier-plateau-256.conf @@ -0,0 +1,41 @@ +# Base16 Atelier Plateau - kitty color config +# Bram de Haan (http://atelierbramdehaan.nl) +background #1b1818 +foreground #8a8585 +selection_background #8a8585 +selection_foreground #1b1818 +url_color #7e7777 +cursor #8a8585 +active_border_color #655d5d +active_tab_background #1b1818 +active_tab_foreground #8a8585 +inactive_tab_background #292424 +inactive_tab_foreground #7e7777 + +# normal +color0 #1b1818 +color1 #ca4949 +color2 #4b8b8b +color3 #a06e3b +color4 #7272ca +color5 #8464c4 +color6 #5485b6 +color7 #8a8585 + +# bright +color8 #655d5d +color9 #ca4949 +color10 #4b8b8b +color11 #a06e3b +color12 #7272ca +color13 #8464c4 +color14 #5485b6 +color15 #8a8585 + +# extended base16 colors +color16 #b45a3c +color17 #bd5187 +color18 #292424 +color19 #585050 +color20 #7e7777 +color21 #e7dfdf diff --git a/kitty/colors/base16/base16-atelier-plateau-light-256.conf b/kitty/colors/base16/base16-atelier-plateau-light-256.conf new file mode 100755 index 0000000..df4c1bf --- /dev/null +++ b/kitty/colors/base16/base16-atelier-plateau-light-256.conf @@ -0,0 +1,41 @@ +# Base16 Atelier Plateau Light - kitty color config +# Bram de Haan (http://atelierbramdehaan.nl) +background #f4ecec +foreground #585050 +selection_background #585050 +selection_foreground #f4ecec +url_color #655d5d +cursor #585050 +active_border_color #7e7777 +active_tab_background #f4ecec +active_tab_foreground #585050 +inactive_tab_background #e7dfdf +inactive_tab_foreground #655d5d + +# normal +color0 #f4ecec +color1 #ca4949 +color2 #4b8b8b +color3 #a06e3b +color4 #7272ca +color5 #8464c4 +color6 #5485b6 +color7 #585050 + +# bright +color8 #7e7777 +color9 #ca4949 +color10 #4b8b8b +color11 #a06e3b +color12 #7272ca +color13 #8464c4 +color14 #5485b6 +color15 #585050 + +# extended base16 colors +color16 #b45a3c +color17 #bd5187 +color18 #e7dfdf +color19 #8a8585 +color20 #655d5d +color21 #292424 diff --git a/kitty/colors/base16/base16-atelier-plateau-light.conf b/kitty/colors/base16/base16-atelier-plateau-light.conf new file mode 100755 index 0000000..a6ec860 --- /dev/null +++ b/kitty/colors/base16/base16-atelier-plateau-light.conf @@ -0,0 +1,33 @@ +# Base16 Atelier Plateau Light - kitty color config +# Bram de Haan (http://atelierbramdehaan.nl) +background #f4ecec +foreground #585050 +selection_background #585050 +selection_foreground #f4ecec +url_color #655d5d +cursor #585050 +active_border_color #7e7777 +active_tab_background #f4ecec +active_tab_foreground #585050 +inactive_tab_background #e7dfdf +inactive_tab_foreground #655d5d + +# normal +color0 #f4ecec +color1 #ca4949 +color2 #4b8b8b +color3 #a06e3b +color4 #7272ca +color5 #8464c4 +color6 #5485b6 +color7 #585050 + +# bright +color8 #7e7777 +color9 #b45a3c +color10 #e7dfdf +color11 #8a8585 +color12 #655d5d +color13 #292424 +color14 #bd5187 +color15 #585050 diff --git a/kitty/colors/base16/base16-atelier-plateau.conf b/kitty/colors/base16/base16-atelier-plateau.conf new file mode 100755 index 0000000..ca229ab --- /dev/null +++ b/kitty/colors/base16/base16-atelier-plateau.conf @@ -0,0 +1,33 @@ +# Base16 Atelier Plateau - kitty color config +# Bram de Haan (http://atelierbramdehaan.nl) +background #1b1818 +foreground #8a8585 +selection_background #8a8585 +selection_foreground #1b1818 +url_color #7e7777 +cursor #8a8585 +active_border_color #655d5d +active_tab_background #1b1818 +active_tab_foreground #8a8585 +inactive_tab_background #292424 +inactive_tab_foreground #7e7777 + +# normal +color0 #1b1818 +color1 #ca4949 +color2 #4b8b8b +color3 #a06e3b +color4 #7272ca +color5 #8464c4 +color6 #5485b6 +color7 #8a8585 + +# bright +color8 #655d5d +color9 #b45a3c +color10 #292424 +color11 #585050 +color12 #7e7777 +color13 #e7dfdf +color14 #bd5187 +color15 #8a8585 diff --git a/kitty/colors/base16/base16-atelier-savanna-256.conf b/kitty/colors/base16/base16-atelier-savanna-256.conf new file mode 100755 index 0000000..73b6098 --- /dev/null +++ b/kitty/colors/base16/base16-atelier-savanna-256.conf @@ -0,0 +1,41 @@ +# Base16 Atelier Savanna - kitty color config +# Bram de Haan (http://atelierbramdehaan.nl) +background #171c19 +foreground #87928a +selection_background #87928a +selection_foreground #171c19 +url_color #78877d +cursor #87928a +active_border_color #5f6d64 +active_tab_background #171c19 +active_tab_foreground #87928a +inactive_tab_background #232a25 +inactive_tab_foreground #78877d + +# normal +color0 #171c19 +color1 #b16139 +color2 #489963 +color3 #a07e3b +color4 #478c90 +color5 #55859b +color6 #1c9aa0 +color7 #87928a + +# bright +color8 #5f6d64 +color9 #b16139 +color10 #489963 +color11 #a07e3b +color12 #478c90 +color13 #55859b +color14 #1c9aa0 +color15 #87928a + +# extended base16 colors +color16 #9f713c +color17 #867469 +color18 #232a25 +color19 #526057 +color20 #78877d +color21 #dfe7e2 diff --git a/kitty/colors/base16/base16-atelier-savanna-light-256.conf b/kitty/colors/base16/base16-atelier-savanna-light-256.conf new file mode 100755 index 0000000..703b9ae --- /dev/null +++ b/kitty/colors/base16/base16-atelier-savanna-light-256.conf @@ -0,0 +1,41 @@ +# Base16 Atelier Savanna Light - kitty color config +# Bram de Haan (http://atelierbramdehaan.nl) +background #ecf4ee +foreground #526057 +selection_background #526057 +selection_foreground #ecf4ee +url_color #5f6d64 +cursor #526057 +active_border_color #78877d +active_tab_background #ecf4ee +active_tab_foreground #526057 +inactive_tab_background #dfe7e2 +inactive_tab_foreground #5f6d64 + +# normal +color0 #ecf4ee +color1 #b16139 +color2 #489963 +color3 #a07e3b +color4 #478c90 +color5 #55859b +color6 #1c9aa0 +color7 #526057 + +# bright +color8 #78877d +color9 #b16139 +color10 #489963 +color11 #a07e3b +color12 #478c90 +color13 #55859b +color14 #1c9aa0 +color15 #526057 + +# extended base16 colors +color16 #9f713c +color17 #867469 +color18 #dfe7e2 +color19 #87928a +color20 #5f6d64 +color21 #232a25 diff --git a/kitty/colors/base16/base16-atelier-savanna-light.conf b/kitty/colors/base16/base16-atelier-savanna-light.conf new file mode 100755 index 0000000..ab88382 --- /dev/null +++ b/kitty/colors/base16/base16-atelier-savanna-light.conf @@ -0,0 +1,33 @@ +# Base16 Atelier Savanna Light - kitty color config +# Bram de Haan (http://atelierbramdehaan.nl) +background #ecf4ee +foreground #526057 +selection_background #526057 +selection_foreground #ecf4ee +url_color #5f6d64 +cursor #526057 +active_border_color #78877d +active_tab_background #ecf4ee +active_tab_foreground #526057 +inactive_tab_background #dfe7e2 +inactive_tab_foreground #5f6d64 + +# normal +color0 #ecf4ee +color1 #b16139 +color2 #489963 +color3 #a07e3b +color4 #478c90 +color5 #55859b +color6 #1c9aa0 +color7 #526057 + +# bright +color8 #78877d +color9 #9f713c +color10 #dfe7e2 +color11 #87928a +color12 #5f6d64 +color13 #232a25 +color14 #867469 +color15 #526057 diff --git a/kitty/colors/base16/base16-atelier-savanna.conf b/kitty/colors/base16/base16-atelier-savanna.conf new file mode 100755 index 0000000..fa242bb --- /dev/null +++ b/kitty/colors/base16/base16-atelier-savanna.conf @@ -0,0 +1,33 @@ +# Base16 Atelier Savanna - kitty color config +# Bram de Haan (http://atelierbramdehaan.nl) +background #171c19 +foreground #87928a +selection_background #87928a +selection_foreground #171c19 +url_color #78877d +cursor #87928a +active_border_color #5f6d64 +active_tab_background #171c19 +active_tab_foreground #87928a +inactive_tab_background #232a25 +inactive_tab_foreground #78877d + +# normal +color0 #171c19 +color1 #b16139 +color2 #489963 +color3 #a07e3b +color4 #478c90 +color5 #55859b +color6 #1c9aa0 +color7 #87928a + +# bright +color8 #5f6d64 +color9 #9f713c +color10 #232a25 +color11 #526057 +color12 #78877d +color13 #dfe7e2 +color14 #867469 +color15 #87928a diff --git a/kitty/colors/base16/base16-atelier-seaside-256.conf b/kitty/colors/base16/base16-atelier-seaside-256.conf new file mode 100755 index 0000000..eb97fa6 --- /dev/null +++ b/kitty/colors/base16/base16-atelier-seaside-256.conf @@ -0,0 +1,41 @@ +# Base16 Atelier Seaside - kitty color config +# Bram de Haan (http://atelierbramdehaan.nl) +background #131513 +foreground #8ca68c +selection_background #8ca68c +selection_foreground #131513 +url_color #809980 +cursor #8ca68c +active_border_color #687d68 +active_tab_background #131513 +active_tab_foreground #8ca68c +inactive_tab_background #242924 +inactive_tab_foreground #809980 + +# normal +color0 #131513 +color1 #e6193c +color2 #29a329 +color3 #98981b +color4 #3d62f5 +color5 #ad2bee +color6 #1999b3 +color7 #8ca68c + +# bright +color8 #687d68 +color9 #e6193c +color10 #29a329 +color11 #98981b +color12 #3d62f5 +color13 #ad2bee +color14 #1999b3 +color15 #8ca68c + +# extended base16 colors +color16 #87711d +color17 #e619c3 +color18 #242924 +color19 #5e6e5e +color20 #809980 +color21 #cfe8cf diff --git a/kitty/colors/base16/base16-atelier-seaside-light-256.conf b/kitty/colors/base16/base16-atelier-seaside-light-256.conf new file mode 100755 index 0000000..d8e01d9 --- /dev/null +++ b/kitty/colors/base16/base16-atelier-seaside-light-256.conf @@ -0,0 +1,41 @@ +# Base16 Atelier Seaside Light - kitty color config +# Bram de Haan (http://atelierbramdehaan.nl) +background #f4fbf4 +foreground #5e6e5e +selection_background #5e6e5e +selection_foreground #f4fbf4 +url_color #687d68 +cursor #5e6e5e +active_border_color #809980 +active_tab_background #f4fbf4 +active_tab_foreground #5e6e5e +inactive_tab_background #cfe8cf +inactive_tab_foreground #687d68 + +# normal +color0 #f4fbf4 +color1 #e6193c +color2 #29a329 +color3 #98981b +color4 #3d62f5 +color5 #ad2bee +color6 #1999b3 +color7 #5e6e5e + +# bright +color8 #809980 +color9 #e6193c +color10 #29a329 +color11 #98981b +color12 #3d62f5 +color13 #ad2bee +color14 #1999b3 +color15 #5e6e5e + +# extended base16 colors +color16 #87711d +color17 #e619c3 +color18 #cfe8cf +color19 #8ca68c +color20 #687d68 +color21 #242924 diff --git a/kitty/colors/base16/base16-atelier-seaside-light.conf b/kitty/colors/base16/base16-atelier-seaside-light.conf new file mode 100755 index 0000000..4d0de7f --- /dev/null +++ b/kitty/colors/base16/base16-atelier-seaside-light.conf @@ -0,0 +1,33 @@ +# Base16 Atelier Seaside Light - kitty color config +# Bram de Haan (http://atelierbramdehaan.nl) +background #f4fbf4 +foreground #5e6e5e +selection_background #5e6e5e +selection_foreground #f4fbf4 +url_color #687d68 +cursor #5e6e5e +active_border_color #809980 +active_tab_background #f4fbf4 +active_tab_foreground #5e6e5e +inactive_tab_background #cfe8cf +inactive_tab_foreground #687d68 + +# normal +color0 #f4fbf4 +color1 #e6193c +color2 #29a329 +color3 #98981b +color4 #3d62f5 +color5 #ad2bee +color6 #1999b3 +color7 #5e6e5e + +# bright +color8 #809980 +color9 #87711d +color10 #cfe8cf +color11 #8ca68c +color12 #687d68 +color13 #242924 +color14 #e619c3 +color15 #5e6e5e diff --git a/kitty/colors/base16/base16-atelier-seaside.conf b/kitty/colors/base16/base16-atelier-seaside.conf new file mode 100755 index 0000000..a74f5d9 --- /dev/null +++ b/kitty/colors/base16/base16-atelier-seaside.conf @@ -0,0 +1,33 @@ +# Base16 Atelier Seaside - kitty color config +# Bram de Haan (http://atelierbramdehaan.nl) +background #131513 +foreground #8ca68c +selection_background #8ca68c +selection_foreground #131513 +url_color #809980 +cursor #8ca68c +active_border_color #687d68 +active_tab_background #131513 +active_tab_foreground #8ca68c +inactive_tab_background #242924 +inactive_tab_foreground #809980 + +# normal +color0 #131513 +color1 #e6193c +color2 #29a329 +color3 #98981b +color4 #3d62f5 +color5 #ad2bee +color6 #1999b3 +color7 #8ca68c + +# bright +color8 #687d68 +color9 #87711d +color10 #242924 +color11 #5e6e5e +color12 #809980 +color13 #cfe8cf +color14 #e619c3 +color15 #8ca68c diff --git a/kitty/colors/base16/base16-atelier-sulphurpool-256.conf b/kitty/colors/base16/base16-atelier-sulphurpool-256.conf new file mode 100755 index 0000000..f5eb3a2 --- /dev/null +++ b/kitty/colors/base16/base16-atelier-sulphurpool-256.conf @@ -0,0 +1,41 @@ +# Base16 Atelier Sulphurpool - kitty color config +# Bram de Haan (http://atelierbramdehaan.nl) +background #202746 +foreground #979db4 +selection_background #979db4 +selection_foreground #202746 +url_color #898ea4 +cursor #979db4 +active_border_color #6b7394 +active_tab_background #202746 +active_tab_foreground #979db4 +inactive_tab_background #293256 +inactive_tab_foreground #898ea4 + +# normal +color0 #202746 +color1 #c94922 +color2 #ac9739 +color3 #c08b30 +color4 #3d8fd1 +color5 #6679cc +color6 #22a2c9 +color7 #979db4 + +# bright +color8 #6b7394 +color9 #c94922 +color10 #ac9739 +color11 #c08b30 +color12 #3d8fd1 +color13 #6679cc +color14 #22a2c9 +color15 #979db4 + +# extended base16 colors +color16 #c76b29 +color17 #9c637a +color18 #293256 +color19 #5e6687 +color20 #898ea4 +color21 #dfe2f1 diff --git a/kitty/colors/base16/base16-atelier-sulphurpool-light-256.conf b/kitty/colors/base16/base16-atelier-sulphurpool-light-256.conf new file mode 100755 index 0000000..97d209a --- /dev/null +++ b/kitty/colors/base16/base16-atelier-sulphurpool-light-256.conf @@ -0,0 +1,41 @@ +# Base16 Atelier Sulphurpool Light - kitty color config +# Bram de Haan (http://atelierbramdehaan.nl) +background #f5f7ff +foreground #5e6687 +selection_background #5e6687 +selection_foreground #f5f7ff +url_color #6b7394 +cursor #5e6687 +active_border_color #898ea4 +active_tab_background #f5f7ff +active_tab_foreground #5e6687 +inactive_tab_background #dfe2f1 +inactive_tab_foreground #6b7394 + +# normal +color0 #f5f7ff +color1 #c94922 +color2 #ac9739 +color3 #c08b30 +color4 #3d8fd1 +color5 #6679cc +color6 #22a2c9 +color7 #5e6687 + +# bright +color8 #898ea4 +color9 #c94922 +color10 #ac9739 +color11 #c08b30 +color12 #3d8fd1 +color13 #6679cc +color14 #22a2c9 +color15 #5e6687 + +# extended base16 colors +color16 #c76b29 +color17 #9c637a +color18 #dfe2f1 +color19 #979db4 +color20 #6b7394 +color21 #293256 diff --git a/kitty/colors/base16/base16-atelier-sulphurpool-light.conf b/kitty/colors/base16/base16-atelier-sulphurpool-light.conf new file mode 100755 index 0000000..9da82c0 --- /dev/null +++ b/kitty/colors/base16/base16-atelier-sulphurpool-light.conf @@ -0,0 +1,33 @@ +# Base16 Atelier Sulphurpool Light - kitty color config +# Bram de Haan (http://atelierbramdehaan.nl) +background #f5f7ff +foreground #5e6687 +selection_background #5e6687 +selection_foreground #f5f7ff +url_color #6b7394 +cursor #5e6687 +active_border_color #898ea4 +active_tab_background #f5f7ff +active_tab_foreground #5e6687 +inactive_tab_background #dfe2f1 +inactive_tab_foreground #6b7394 + +# normal +color0 #f5f7ff +color1 #c94922 +color2 #ac9739 +color3 #c08b30 +color4 #3d8fd1 +color5 #6679cc +color6 #22a2c9 +color7 #5e6687 + +# bright +color8 #898ea4 +color9 #c76b29 +color10 #dfe2f1 +color11 #979db4 +color12 #6b7394 +color13 #293256 +color14 #9c637a +color15 #5e6687 diff --git a/kitty/colors/base16/base16-atelier-sulphurpool.conf b/kitty/colors/base16/base16-atelier-sulphurpool.conf new file mode 100755 index 0000000..45a6dd7 --- /dev/null +++ b/kitty/colors/base16/base16-atelier-sulphurpool.conf @@ -0,0 +1,33 @@ +# Base16 Atelier Sulphurpool - kitty color config +# Bram de Haan (http://atelierbramdehaan.nl) +background #202746 +foreground #979db4 +selection_background #979db4 +selection_foreground #202746 +url_color #898ea4 +cursor #979db4 +active_border_color #6b7394 +active_tab_background #202746 +active_tab_foreground #979db4 +inactive_tab_background #293256 +inactive_tab_foreground #898ea4 + +# normal +color0 #202746 +color1 #c94922 +color2 #ac9739 +color3 #c08b30 +color4 #3d8fd1 +color5 #6679cc +color6 #22a2c9 +color7 #979db4 + +# bright +color8 #6b7394 +color9 #c76b29 +color10 #293256 +color11 #5e6687 +color12 #898ea4 +color13 #dfe2f1 +color14 #9c637a +color15 #979db4 diff --git a/kitty/colors/base16/base16-bespin-256.conf b/kitty/colors/base16/base16-bespin-256.conf new file mode 100755 index 0000000..5258f17 --- /dev/null +++ b/kitty/colors/base16/base16-bespin-256.conf @@ -0,0 +1,41 @@ +# Base16 Bespin - kitty color config +# Jan T. Sott +background #28211c +foreground #8a8986 +selection_background #8a8986 +selection_foreground #28211c +url_color #797977 +cursor #8a8986 +active_border_color #666666 +active_tab_background #28211c +active_tab_foreground #8a8986 +inactive_tab_background #36312e +inactive_tab_foreground #797977 + +# normal +color0 #28211c +color1 #cf6a4c +color2 #54be0d +color3 #f9ee98 +color4 #5ea6ea +color5 #9b859d +color6 #afc4db +color7 #8a8986 + +# bright +color8 #666666 +color9 #cf6a4c +color10 #54be0d +color11 #f9ee98 +color12 #5ea6ea +color13 #9b859d +color14 #afc4db +color15 #8a8986 + +# extended base16 colors +color16 #cf7d34 +color17 #937121 +color18 #36312e +color19 #5e5d5c +color20 #797977 +color21 #9d9b97 diff --git a/kitty/colors/base16/base16-bespin.conf b/kitty/colors/base16/base16-bespin.conf new file mode 100755 index 0000000..79fd040 --- /dev/null +++ b/kitty/colors/base16/base16-bespin.conf @@ -0,0 +1,33 @@ +# Base16 Bespin - kitty color config +# Jan T. Sott +background #28211c +foreground #8a8986 +selection_background #8a8986 +selection_foreground #28211c +url_color #797977 +cursor #8a8986 +active_border_color #666666 +active_tab_background #28211c +active_tab_foreground #8a8986 +inactive_tab_background #36312e +inactive_tab_foreground #797977 + +# normal +color0 #28211c +color1 #cf6a4c +color2 #54be0d +color3 #f9ee98 +color4 #5ea6ea +color5 #9b859d +color6 #afc4db +color7 #8a8986 + +# bright +color8 #666666 +color9 #cf7d34 +color10 #36312e +color11 #5e5d5c +color12 #797977 +color13 #9d9b97 +color14 #937121 +color15 #8a8986 diff --git a/kitty/colors/base16/base16-black-metal-256.conf b/kitty/colors/base16/base16-black-metal-256.conf new file mode 100755 index 0000000..9be449d --- /dev/null +++ b/kitty/colors/base16/base16-black-metal-256.conf @@ -0,0 +1,41 @@ +# Base16 Black Metal - kitty color config +# metalelf0 (https://github.com/metalelf0) +background #000000 +foreground #c1c1c1 +selection_background #c1c1c1 +selection_foreground #000000 +url_color #999999 +cursor #c1c1c1 +active_border_color #333333 +active_tab_background #000000 +active_tab_foreground #c1c1c1 +inactive_tab_background #121212 +inactive_tab_foreground #999999 + +# normal +color0 #000000 +color1 #5f8787 +color2 #dd9999 +color3 #a06666 +color4 #888888 +color5 #999999 +color6 #aaaaaa +color7 #c1c1c1 + +# bright +color8 #333333 +color9 #5f8787 +color10 #dd9999 +color11 #a06666 +color12 #888888 +color13 #999999 +color14 #aaaaaa +color15 #c1c1c1 + +# extended base16 colors +color16 #aaaaaa +color17 #444444 +color18 #121212 +color19 #222222 +color20 #999999 +color21 #999999 diff --git a/kitty/colors/base16/base16-black-metal-bathory-256.conf b/kitty/colors/base16/base16-black-metal-bathory-256.conf new file mode 100755 index 0000000..477bbf0 --- /dev/null +++ b/kitty/colors/base16/base16-black-metal-bathory-256.conf @@ -0,0 +1,41 @@ +# Base16 Black Metal (Bathory) - kitty color config +# metalelf0 (https://github.com/metalelf0) +background #000000 +foreground #c1c1c1 +selection_background #c1c1c1 +selection_foreground #000000 +url_color #999999 +cursor #c1c1c1 +active_border_color #333333 +active_tab_background #000000 +active_tab_foreground #c1c1c1 +inactive_tab_background #121212 +inactive_tab_foreground #999999 + +# normal +color0 #000000 +color1 #5f8787 +color2 #fbcb97 +color3 #e78a53 +color4 #888888 +color5 #999999 +color6 #aaaaaa +color7 #c1c1c1 + +# bright +color8 #333333 +color9 #5f8787 +color10 #fbcb97 +color11 #e78a53 +color12 #888888 +color13 #999999 +color14 #aaaaaa +color15 #c1c1c1 + +# extended base16 colors +color16 #aaaaaa +color17 #444444 +color18 #121212 +color19 #222222 +color20 #999999 +color21 #999999 diff --git a/kitty/colors/base16/base16-black-metal-bathory.conf b/kitty/colors/base16/base16-black-metal-bathory.conf new file mode 100755 index 0000000..a7c3c3a --- /dev/null +++ b/kitty/colors/base16/base16-black-metal-bathory.conf @@ -0,0 +1,33 @@ +# Base16 Black Metal (Bathory) - kitty color config +# metalelf0 (https://github.com/metalelf0) +background #000000 +foreground #c1c1c1 +selection_background #c1c1c1 +selection_foreground #000000 +url_color #999999 +cursor #c1c1c1 +active_border_color #333333 +active_tab_background #000000 +active_tab_foreground #c1c1c1 +inactive_tab_background #121212 +inactive_tab_foreground #999999 + +# normal +color0 #000000 +color1 #5f8787 +color2 #fbcb97 +color3 #e78a53 +color4 #888888 +color5 #999999 +color6 #aaaaaa +color7 #c1c1c1 + +# bright +color8 #333333 +color9 #aaaaaa +color10 #121212 +color11 #222222 +color12 #999999 +color13 #999999 +color14 #444444 +color15 #c1c1c1 diff --git a/kitty/colors/base16/base16-black-metal-burzum-256.conf b/kitty/colors/base16/base16-black-metal-burzum-256.conf new file mode 100755 index 0000000..c8b6d2f --- /dev/null +++ b/kitty/colors/base16/base16-black-metal-burzum-256.conf @@ -0,0 +1,41 @@ +# Base16 Black Metal (Burzum) - kitty color config +# metalelf0 (https://github.com/metalelf0) +background #000000 +foreground #c1c1c1 +selection_background #c1c1c1 +selection_foreground #000000 +url_color #999999 +cursor #c1c1c1 +active_border_color #333333 +active_tab_background #000000 +active_tab_foreground #c1c1c1 +inactive_tab_background #121212 +inactive_tab_foreground #999999 + +# normal +color0 #000000 +color1 #5f8787 +color2 #ddeecc +color3 #99bbaa +color4 #888888 +color5 #999999 +color6 #aaaaaa +color7 #c1c1c1 + +# bright +color8 #333333 +color9 #5f8787 +color10 #ddeecc +color11 #99bbaa +color12 #888888 +color13 #999999 +color14 #aaaaaa +color15 #c1c1c1 + +# extended base16 colors +color16 #aaaaaa +color17 #444444 +color18 #121212 +color19 #222222 +color20 #999999 +color21 #999999 diff --git a/kitty/colors/base16/base16-black-metal-burzum.conf b/kitty/colors/base16/base16-black-metal-burzum.conf new file mode 100755 index 0000000..abd920f --- /dev/null +++ b/kitty/colors/base16/base16-black-metal-burzum.conf @@ -0,0 +1,33 @@ +# Base16 Black Metal (Burzum) - kitty color config +# metalelf0 (https://github.com/metalelf0) +background #000000 +foreground #c1c1c1 +selection_background #c1c1c1 +selection_foreground #000000 +url_color #999999 +cursor #c1c1c1 +active_border_color #333333 +active_tab_background #000000 +active_tab_foreground #c1c1c1 +inactive_tab_background #121212 +inactive_tab_foreground #999999 + +# normal +color0 #000000 +color1 #5f8787 +color2 #ddeecc +color3 #99bbaa +color4 #888888 +color5 #999999 +color6 #aaaaaa +color7 #c1c1c1 + +# bright +color8 #333333 +color9 #aaaaaa +color10 #121212 +color11 #222222 +color12 #999999 +color13 #999999 +color14 #444444 +color15 #c1c1c1 diff --git a/kitty/colors/base16/base16-black-metal-dark-funeral-256.conf b/kitty/colors/base16/base16-black-metal-dark-funeral-256.conf new file mode 100755 index 0000000..0c7fafc --- /dev/null +++ b/kitty/colors/base16/base16-black-metal-dark-funeral-256.conf @@ -0,0 +1,41 @@ +# Base16 Black Metal (Dark Funeral) - kitty color config +# metalelf0 (https://github.com/metalelf0) +background #000000 +foreground #c1c1c1 +selection_background #c1c1c1 +selection_foreground #000000 +url_color #999999 +cursor #c1c1c1 +active_border_color #333333 +active_tab_background #000000 +active_tab_foreground #c1c1c1 +inactive_tab_background #121212 +inactive_tab_foreground #999999 + +# normal +color0 #000000 +color1 #5f8787 +color2 #d0dfee +color3 #5f81a5 +color4 #888888 +color5 #999999 +color6 #aaaaaa +color7 #c1c1c1 + +# bright +color8 #333333 +color9 #5f8787 +color10 #d0dfee +color11 #5f81a5 +color12 #888888 +color13 #999999 +color14 #aaaaaa +color15 #c1c1c1 + +# extended base16 colors +color16 #aaaaaa +color17 #444444 +color18 #121212 +color19 #222222 +color20 #999999 +color21 #999999 diff --git a/kitty/colors/base16/base16-black-metal-dark-funeral.conf b/kitty/colors/base16/base16-black-metal-dark-funeral.conf new file mode 100755 index 0000000..00161ec --- /dev/null +++ b/kitty/colors/base16/base16-black-metal-dark-funeral.conf @@ -0,0 +1,33 @@ +# Base16 Black Metal (Dark Funeral) - kitty color config +# metalelf0 (https://github.com/metalelf0) +background #000000 +foreground #c1c1c1 +selection_background #c1c1c1 +selection_foreground #000000 +url_color #999999 +cursor #c1c1c1 +active_border_color #333333 +active_tab_background #000000 +active_tab_foreground #c1c1c1 +inactive_tab_background #121212 +inactive_tab_foreground #999999 + +# normal +color0 #000000 +color1 #5f8787 +color2 #d0dfee +color3 #5f81a5 +color4 #888888 +color5 #999999 +color6 #aaaaaa +color7 #c1c1c1 + +# bright +color8 #333333 +color9 #aaaaaa +color10 #121212 +color11 #222222 +color12 #999999 +color13 #999999 +color14 #444444 +color15 #c1c1c1 diff --git a/kitty/colors/base16/base16-black-metal-gorgoroth-256.conf b/kitty/colors/base16/base16-black-metal-gorgoroth-256.conf new file mode 100755 index 0000000..4e54eee --- /dev/null +++ b/kitty/colors/base16/base16-black-metal-gorgoroth-256.conf @@ -0,0 +1,41 @@ +# Base16 Black Metal (Gorgoroth) - kitty color config +# metalelf0 (https://github.com/metalelf0) +background #000000 +foreground #c1c1c1 +selection_background #c1c1c1 +selection_foreground #000000 +url_color #999999 +cursor #c1c1c1 +active_border_color #333333 +active_tab_background #000000 +active_tab_foreground #c1c1c1 +inactive_tab_background #121212 +inactive_tab_foreground #999999 + +# normal +color0 #000000 +color1 #5f8787 +color2 #9b8d7f +color3 #8c7f70 +color4 #888888 +color5 #999999 +color6 #aaaaaa +color7 #c1c1c1 + +# bright +color8 #333333 +color9 #5f8787 +color10 #9b8d7f +color11 #8c7f70 +color12 #888888 +color13 #999999 +color14 #aaaaaa +color15 #c1c1c1 + +# extended base16 colors +color16 #aaaaaa +color17 #444444 +color18 #121212 +color19 #222222 +color20 #999999 +color21 #999999 diff --git a/kitty/colors/base16/base16-black-metal-gorgoroth.conf b/kitty/colors/base16/base16-black-metal-gorgoroth.conf new file mode 100755 index 0000000..4adcf3c --- /dev/null +++ b/kitty/colors/base16/base16-black-metal-gorgoroth.conf @@ -0,0 +1,33 @@ +# Base16 Black Metal (Gorgoroth) - kitty color config +# metalelf0 (https://github.com/metalelf0) +background #000000 +foreground #c1c1c1 +selection_background #c1c1c1 +selection_foreground #000000 +url_color #999999 +cursor #c1c1c1 +active_border_color #333333 +active_tab_background #000000 +active_tab_foreground #c1c1c1 +inactive_tab_background #121212 +inactive_tab_foreground #999999 + +# normal +color0 #000000 +color1 #5f8787 +color2 #9b8d7f +color3 #8c7f70 +color4 #888888 +color5 #999999 +color6 #aaaaaa +color7 #c1c1c1 + +# bright +color8 #333333 +color9 #aaaaaa +color10 #121212 +color11 #222222 +color12 #999999 +color13 #999999 +color14 #444444 +color15 #c1c1c1 diff --git a/kitty/colors/base16/base16-black-metal-immortal-256.conf b/kitty/colors/base16/base16-black-metal-immortal-256.conf new file mode 100755 index 0000000..1aad68b --- /dev/null +++ b/kitty/colors/base16/base16-black-metal-immortal-256.conf @@ -0,0 +1,41 @@ +# Base16 Black Metal (Immortal) - kitty color config +# metalelf0 (https://github.com/metalelf0) +background #000000 +foreground #c1c1c1 +selection_background #c1c1c1 +selection_foreground #000000 +url_color #999999 +cursor #c1c1c1 +active_border_color #333333 +active_tab_background #000000 +active_tab_foreground #c1c1c1 +inactive_tab_background #121212 +inactive_tab_foreground #999999 + +# normal +color0 #000000 +color1 #5f8787 +color2 #7799bb +color3 #556677 +color4 #888888 +color5 #999999 +color6 #aaaaaa +color7 #c1c1c1 + +# bright +color8 #333333 +color9 #5f8787 +color10 #7799bb +color11 #556677 +color12 #888888 +color13 #999999 +color14 #aaaaaa +color15 #c1c1c1 + +# extended base16 colors +color16 #aaaaaa +color17 #444444 +color18 #121212 +color19 #222222 +color20 #999999 +color21 #999999 diff --git a/kitty/colors/base16/base16-black-metal-immortal.conf b/kitty/colors/base16/base16-black-metal-immortal.conf new file mode 100755 index 0000000..32da5ff --- /dev/null +++ b/kitty/colors/base16/base16-black-metal-immortal.conf @@ -0,0 +1,33 @@ +# Base16 Black Metal (Immortal) - kitty color config +# metalelf0 (https://github.com/metalelf0) +background #000000 +foreground #c1c1c1 +selection_background #c1c1c1 +selection_foreground #000000 +url_color #999999 +cursor #c1c1c1 +active_border_color #333333 +active_tab_background #000000 +active_tab_foreground #c1c1c1 +inactive_tab_background #121212 +inactive_tab_foreground #999999 + +# normal +color0 #000000 +color1 #5f8787 +color2 #7799bb +color3 #556677 +color4 #888888 +color5 #999999 +color6 #aaaaaa +color7 #c1c1c1 + +# bright +color8 #333333 +color9 #aaaaaa +color10 #121212 +color11 #222222 +color12 #999999 +color13 #999999 +color14 #444444 +color15 #c1c1c1 diff --git a/kitty/colors/base16/base16-black-metal-khold-256.conf b/kitty/colors/base16/base16-black-metal-khold-256.conf new file mode 100755 index 0000000..ef1f6c2 --- /dev/null +++ b/kitty/colors/base16/base16-black-metal-khold-256.conf @@ -0,0 +1,41 @@ +# Base16 Black Metal (Khold) - kitty color config +# metalelf0 (https://github.com/metalelf0) +background #000000 +foreground #c1c1c1 +selection_background #c1c1c1 +selection_foreground #000000 +url_color #999999 +cursor #c1c1c1 +active_border_color #333333 +active_tab_background #000000 +active_tab_foreground #c1c1c1 +inactive_tab_background #121212 +inactive_tab_foreground #999999 + +# normal +color0 #000000 +color1 #5f8787 +color2 #eceee3 +color3 #974b46 +color4 #888888 +color5 #999999 +color6 #aaaaaa +color7 #c1c1c1 + +# bright +color8 #333333 +color9 #5f8787 +color10 #eceee3 +color11 #974b46 +color12 #888888 +color13 #999999 +color14 #aaaaaa +color15 #c1c1c1 + +# extended base16 colors +color16 #aaaaaa +color17 #444444 +color18 #121212 +color19 #222222 +color20 #999999 +color21 #999999 diff --git a/kitty/colors/base16/base16-black-metal-khold.conf b/kitty/colors/base16/base16-black-metal-khold.conf new file mode 100755 index 0000000..4083e34 --- /dev/null +++ b/kitty/colors/base16/base16-black-metal-khold.conf @@ -0,0 +1,33 @@ +# Base16 Black Metal (Khold) - kitty color config +# metalelf0 (https://github.com/metalelf0) +background #000000 +foreground #c1c1c1 +selection_background #c1c1c1 +selection_foreground #000000 +url_color #999999 +cursor #c1c1c1 +active_border_color #333333 +active_tab_background #000000 +active_tab_foreground #c1c1c1 +inactive_tab_background #121212 +inactive_tab_foreground #999999 + +# normal +color0 #000000 +color1 #5f8787 +color2 #eceee3 +color3 #974b46 +color4 #888888 +color5 #999999 +color6 #aaaaaa +color7 #c1c1c1 + +# bright +color8 #333333 +color9 #aaaaaa +color10 #121212 +color11 #222222 +color12 #999999 +color13 #999999 +color14 #444444 +color15 #c1c1c1 diff --git a/kitty/colors/base16/base16-black-metal-marduk-256.conf b/kitty/colors/base16/base16-black-metal-marduk-256.conf new file mode 100755 index 0000000..bc65486 --- /dev/null +++ b/kitty/colors/base16/base16-black-metal-marduk-256.conf @@ -0,0 +1,41 @@ +# Base16 Black Metal (Marduk) - kitty color config +# metalelf0 (https://github.com/metalelf0) +background #000000 +foreground #c1c1c1 +selection_background #c1c1c1 +selection_foreground #000000 +url_color #999999 +cursor #c1c1c1 +active_border_color #333333 +active_tab_background #000000 +active_tab_foreground #c1c1c1 +inactive_tab_background #121212 +inactive_tab_foreground #999999 + +# normal +color0 #000000 +color1 #5f8787 +color2 #a5aaa7 +color3 #626b67 +color4 #888888 +color5 #999999 +color6 #aaaaaa +color7 #c1c1c1 + +# bright +color8 #333333 +color9 #5f8787 +color10 #a5aaa7 +color11 #626b67 +color12 #888888 +color13 #999999 +color14 #aaaaaa +color15 #c1c1c1 + +# extended base16 colors +color16 #aaaaaa +color17 #444444 +color18 #121212 +color19 #222222 +color20 #999999 +color21 #999999 diff --git a/kitty/colors/base16/base16-black-metal-marduk.conf b/kitty/colors/base16/base16-black-metal-marduk.conf new file mode 100755 index 0000000..6ac5132 --- /dev/null +++ b/kitty/colors/base16/base16-black-metal-marduk.conf @@ -0,0 +1,33 @@ +# Base16 Black Metal (Marduk) - kitty color config +# metalelf0 (https://github.com/metalelf0) +background #000000 +foreground #c1c1c1 +selection_background #c1c1c1 +selection_foreground #000000 +url_color #999999 +cursor #c1c1c1 +active_border_color #333333 +active_tab_background #000000 +active_tab_foreground #c1c1c1 +inactive_tab_background #121212 +inactive_tab_foreground #999999 + +# normal +color0 #000000 +color1 #5f8787 +color2 #a5aaa7 +color3 #626b67 +color4 #888888 +color5 #999999 +color6 #aaaaaa +color7 #c1c1c1 + +# bright +color8 #333333 +color9 #aaaaaa +color10 #121212 +color11 #222222 +color12 #999999 +color13 #999999 +color14 #444444 +color15 #c1c1c1 diff --git a/kitty/colors/base16/base16-black-metal-mayhem-256.conf b/kitty/colors/base16/base16-black-metal-mayhem-256.conf new file mode 100755 index 0000000..c1156ad --- /dev/null +++ b/kitty/colors/base16/base16-black-metal-mayhem-256.conf @@ -0,0 +1,41 @@ +# Base16 Black Metal (Mayhem) - kitty color config +# metalelf0 (https://github.com/metalelf0) +background #000000 +foreground #c1c1c1 +selection_background #c1c1c1 +selection_foreground #000000 +url_color #999999 +cursor #c1c1c1 +active_border_color #333333 +active_tab_background #000000 +active_tab_foreground #c1c1c1 +inactive_tab_background #121212 +inactive_tab_foreground #999999 + +# normal +color0 #000000 +color1 #5f8787 +color2 #f3ecd4 +color3 #eecc6c +color4 #888888 +color5 #999999 +color6 #aaaaaa +color7 #c1c1c1 + +# bright +color8 #333333 +color9 #5f8787 +color10 #f3ecd4 +color11 #eecc6c +color12 #888888 +color13 #999999 +color14 #aaaaaa +color15 #c1c1c1 + +# extended base16 colors +color16 #aaaaaa +color17 #444444 +color18 #121212 +color19 #222222 +color20 #999999 +color21 #999999 diff --git a/kitty/colors/base16/base16-black-metal-mayhem.conf b/kitty/colors/base16/base16-black-metal-mayhem.conf new file mode 100755 index 0000000..4ce593e --- /dev/null +++ b/kitty/colors/base16/base16-black-metal-mayhem.conf @@ -0,0 +1,33 @@ +# Base16 Black Metal (Mayhem) - kitty color config +# metalelf0 (https://github.com/metalelf0) +background #000000 +foreground #c1c1c1 +selection_background #c1c1c1 +selection_foreground #000000 +url_color #999999 +cursor #c1c1c1 +active_border_color #333333 +active_tab_background #000000 +active_tab_foreground #c1c1c1 +inactive_tab_background #121212 +inactive_tab_foreground #999999 + +# normal +color0 #000000 +color1 #5f8787 +color2 #f3ecd4 +color3 #eecc6c +color4 #888888 +color5 #999999 +color6 #aaaaaa +color7 #c1c1c1 + +# bright +color8 #333333 +color9 #aaaaaa +color10 #121212 +color11 #222222 +color12 #999999 +color13 #999999 +color14 #444444 +color15 #c1c1c1 diff --git a/kitty/colors/base16/base16-black-metal-nile-256.conf b/kitty/colors/base16/base16-black-metal-nile-256.conf new file mode 100755 index 0000000..ee3c2ac --- /dev/null +++ b/kitty/colors/base16/base16-black-metal-nile-256.conf @@ -0,0 +1,41 @@ +# Base16 Black Metal (Nile) - kitty color config +# metalelf0 (https://github.com/metalelf0) +background #000000 +foreground #c1c1c1 +selection_background #c1c1c1 +selection_foreground #000000 +url_color #999999 +cursor #c1c1c1 +active_border_color #333333 +active_tab_background #000000 +active_tab_foreground #c1c1c1 +inactive_tab_background #121212 +inactive_tab_foreground #999999 + +# normal +color0 #000000 +color1 #5f8787 +color2 #aa9988 +color3 #777755 +color4 #888888 +color5 #999999 +color6 #aaaaaa +color7 #c1c1c1 + +# bright +color8 #333333 +color9 #5f8787 +color10 #aa9988 +color11 #777755 +color12 #888888 +color13 #999999 +color14 #aaaaaa +color15 #c1c1c1 + +# extended base16 colors +color16 #aaaaaa +color17 #444444 +color18 #121212 +color19 #222222 +color20 #999999 +color21 #999999 diff --git a/kitty/colors/base16/base16-black-metal-nile.conf b/kitty/colors/base16/base16-black-metal-nile.conf new file mode 100755 index 0000000..d6038a8 --- /dev/null +++ b/kitty/colors/base16/base16-black-metal-nile.conf @@ -0,0 +1,33 @@ +# Base16 Black Metal (Nile) - kitty color config +# metalelf0 (https://github.com/metalelf0) +background #000000 +foreground #c1c1c1 +selection_background #c1c1c1 +selection_foreground #000000 +url_color #999999 +cursor #c1c1c1 +active_border_color #333333 +active_tab_background #000000 +active_tab_foreground #c1c1c1 +inactive_tab_background #121212 +inactive_tab_foreground #999999 + +# normal +color0 #000000 +color1 #5f8787 +color2 #aa9988 +color3 #777755 +color4 #888888 +color5 #999999 +color6 #aaaaaa +color7 #c1c1c1 + +# bright +color8 #333333 +color9 #aaaaaa +color10 #121212 +color11 #222222 +color12 #999999 +color13 #999999 +color14 #444444 +color15 #c1c1c1 diff --git a/kitty/colors/base16/base16-black-metal-venom-256.conf b/kitty/colors/base16/base16-black-metal-venom-256.conf new file mode 100755 index 0000000..4364220 --- /dev/null +++ b/kitty/colors/base16/base16-black-metal-venom-256.conf @@ -0,0 +1,41 @@ +# Base16 Black Metal (Venom) - kitty color config +# metalelf0 (https://github.com/metalelf0) +background #000000 +foreground #c1c1c1 +selection_background #c1c1c1 +selection_foreground #000000 +url_color #999999 +cursor #c1c1c1 +active_border_color #333333 +active_tab_background #000000 +active_tab_foreground #c1c1c1 +inactive_tab_background #121212 +inactive_tab_foreground #999999 + +# normal +color0 #000000 +color1 #5f8787 +color2 #f8f7f2 +color3 #79241f +color4 #888888 +color5 #999999 +color6 #aaaaaa +color7 #c1c1c1 + +# bright +color8 #333333 +color9 #5f8787 +color10 #f8f7f2 +color11 #79241f +color12 #888888 +color13 #999999 +color14 #aaaaaa +color15 #c1c1c1 + +# extended base16 colors +color16 #aaaaaa +color17 #444444 +color18 #121212 +color19 #222222 +color20 #999999 +color21 #999999 diff --git a/kitty/colors/base16/base16-black-metal-venom.conf b/kitty/colors/base16/base16-black-metal-venom.conf new file mode 100755 index 0000000..374b30c --- /dev/null +++ b/kitty/colors/base16/base16-black-metal-venom.conf @@ -0,0 +1,33 @@ +# Base16 Black Metal (Venom) - kitty color config +# metalelf0 (https://github.com/metalelf0) +background #000000 +foreground #c1c1c1 +selection_background #c1c1c1 +selection_foreground #000000 +url_color #999999 +cursor #c1c1c1 +active_border_color #333333 +active_tab_background #000000 +active_tab_foreground #c1c1c1 +inactive_tab_background #121212 +inactive_tab_foreground #999999 + +# normal +color0 #000000 +color1 #5f8787 +color2 #f8f7f2 +color3 #79241f +color4 #888888 +color5 #999999 +color6 #aaaaaa +color7 #c1c1c1 + +# bright +color8 #333333 +color9 #aaaaaa +color10 #121212 +color11 #222222 +color12 #999999 +color13 #999999 +color14 #444444 +color15 #c1c1c1 diff --git a/kitty/colors/base16/base16-black-metal.conf b/kitty/colors/base16/base16-black-metal.conf new file mode 100755 index 0000000..5861001 --- /dev/null +++ b/kitty/colors/base16/base16-black-metal.conf @@ -0,0 +1,33 @@ +# Base16 Black Metal - kitty color config +# metalelf0 (https://github.com/metalelf0) +background #000000 +foreground #c1c1c1 +selection_background #c1c1c1 +selection_foreground #000000 +url_color #999999 +cursor #c1c1c1 +active_border_color #333333 +active_tab_background #000000 +active_tab_foreground #c1c1c1 +inactive_tab_background #121212 +inactive_tab_foreground #999999 + +# normal +color0 #000000 +color1 #5f8787 +color2 #dd9999 +color3 #a06666 +color4 #888888 +color5 #999999 +color6 #aaaaaa +color7 #c1c1c1 + +# bright +color8 #333333 +color9 #aaaaaa +color10 #121212 +color11 #222222 +color12 #999999 +color13 #999999 +color14 #444444 +color15 #c1c1c1 diff --git a/kitty/colors/base16/base16-brewer-256.conf b/kitty/colors/base16/base16-brewer-256.conf new file mode 100755 index 0000000..28c4a8e --- /dev/null +++ b/kitty/colors/base16/base16-brewer-256.conf @@ -0,0 +1,41 @@ +# Base16 Brewer - kitty color config +# Timothée Poisot (http://github.com/tpoisot) +background #0c0d0e +foreground #b7b8b9 +selection_background #b7b8b9 +selection_foreground #0c0d0e +url_color #959697 +cursor #b7b8b9 +active_border_color #737475 +active_tab_background #0c0d0e +active_tab_foreground #b7b8b9 +inactive_tab_background #2e2f30 +inactive_tab_foreground #959697 + +# normal +color0 #0c0d0e +color1 #e31a1c +color2 #31a354 +color3 #dca060 +color4 #3182bd +color5 #756bb1 +color6 #80b1d3 +color7 #b7b8b9 + +# bright +color8 #737475 +color9 #e31a1c +color10 #31a354 +color11 #dca060 +color12 #3182bd +color13 #756bb1 +color14 #80b1d3 +color15 #b7b8b9 + +# extended base16 colors +color16 #e6550d +color17 #b15928 +color18 #2e2f30 +color19 #515253 +color20 #959697 +color21 #dadbdc diff --git a/kitty/colors/base16/base16-brewer.conf b/kitty/colors/base16/base16-brewer.conf new file mode 100755 index 0000000..cb9a8cf --- /dev/null +++ b/kitty/colors/base16/base16-brewer.conf @@ -0,0 +1,33 @@ +# Base16 Brewer - kitty color config +# Timothée Poisot (http://github.com/tpoisot) +background #0c0d0e +foreground #b7b8b9 +selection_background #b7b8b9 +selection_foreground #0c0d0e +url_color #959697 +cursor #b7b8b9 +active_border_color #737475 +active_tab_background #0c0d0e +active_tab_foreground #b7b8b9 +inactive_tab_background #2e2f30 +inactive_tab_foreground #959697 + +# normal +color0 #0c0d0e +color1 #e31a1c +color2 #31a354 +color3 #dca060 +color4 #3182bd +color5 #756bb1 +color6 #80b1d3 +color7 #b7b8b9 + +# bright +color8 #737475 +color9 #e6550d +color10 #2e2f30 +color11 #515253 +color12 #959697 +color13 #dadbdc +color14 #b15928 +color15 #b7b8b9 diff --git a/kitty/colors/base16/base16-bright-256.conf b/kitty/colors/base16/base16-bright-256.conf new file mode 100755 index 0000000..80d847c --- /dev/null +++ b/kitty/colors/base16/base16-bright-256.conf @@ -0,0 +1,41 @@ +# Base16 Bright - kitty color config +# Chris Kempson (http://chriskempson.com) +background #000000 +foreground #e0e0e0 +selection_background #e0e0e0 +selection_foreground #000000 +url_color #d0d0d0 +cursor #e0e0e0 +active_border_color #b0b0b0 +active_tab_background #000000 +active_tab_foreground #e0e0e0 +inactive_tab_background #303030 +inactive_tab_foreground #d0d0d0 + +# normal +color0 #000000 +color1 #fb0120 +color2 #a1c659 +color3 #fda331 +color4 #6fb3d2 +color5 #d381c3 +color6 #76c7b7 +color7 #e0e0e0 + +# bright +color8 #b0b0b0 +color9 #fb0120 +color10 #a1c659 +color11 #fda331 +color12 #6fb3d2 +color13 #d381c3 +color14 #76c7b7 +color15 #e0e0e0 + +# extended base16 colors +color16 #fc6d24 +color17 #be643c +color18 #303030 +color19 #505050 +color20 #d0d0d0 +color21 #f5f5f5 diff --git a/kitty/colors/base16/base16-bright.conf b/kitty/colors/base16/base16-bright.conf new file mode 100755 index 0000000..053f173 --- /dev/null +++ b/kitty/colors/base16/base16-bright.conf @@ -0,0 +1,33 @@ +# Base16 Bright - kitty color config +# Chris Kempson (http://chriskempson.com) +background #000000 +foreground #e0e0e0 +selection_background #e0e0e0 +selection_foreground #000000 +url_color #d0d0d0 +cursor #e0e0e0 +active_border_color #b0b0b0 +active_tab_background #000000 +active_tab_foreground #e0e0e0 +inactive_tab_background #303030 +inactive_tab_foreground #d0d0d0 + +# normal +color0 #000000 +color1 #fb0120 +color2 #a1c659 +color3 #fda331 +color4 #6fb3d2 +color5 #d381c3 +color6 #76c7b7 +color7 #e0e0e0 + +# bright +color8 #b0b0b0 +color9 #fc6d24 +color10 #303030 +color11 #505050 +color12 #d0d0d0 +color13 #f5f5f5 +color14 #be643c +color15 #e0e0e0 diff --git a/kitty/colors/base16/base16-brogrammer-256.conf b/kitty/colors/base16/base16-brogrammer-256.conf new file mode 100755 index 0000000..58f97f7 --- /dev/null +++ b/kitty/colors/base16/base16-brogrammer-256.conf @@ -0,0 +1,41 @@ +# Base16 Brogrammer - kitty color config +# Vik Ramanujam (http://github.com/piggyslasher) +background #1f1f1f +foreground #4e5ab7 +selection_background #4e5ab7 +selection_foreground #1f1f1f +url_color #2a84d2 +cursor #4e5ab7 +active_border_color #ecba0f +active_tab_background #1f1f1f +active_tab_foreground #4e5ab7 +inactive_tab_background #f81118 +inactive_tab_foreground #2a84d2 + +# normal +color0 #1f1f1f +color1 #d6dbe5 +color2 #f3bd09 +color3 #1dd361 +color4 #5350b9 +color5 #0f7ddb +color6 #1081d6 +color7 #4e5ab7 + +# bright +color8 #ecba0f +color9 #d6dbe5 +color10 #f3bd09 +color11 #1dd361 +color12 #5350b9 +color13 #0f7ddb +color14 #1081d6 +color15 #4e5ab7 + +# extended base16 colors +color16 #de352e +color17 #ffffff +color18 #f81118 +color19 #2dc55e +color20 #2a84d2 +color21 #1081d6 diff --git a/kitty/colors/base16/base16-brogrammer.conf b/kitty/colors/base16/base16-brogrammer.conf new file mode 100755 index 0000000..8ccd323 --- /dev/null +++ b/kitty/colors/base16/base16-brogrammer.conf @@ -0,0 +1,33 @@ +# Base16 Brogrammer - kitty color config +# Vik Ramanujam (http://github.com/piggyslasher) +background #1f1f1f +foreground #4e5ab7 +selection_background #4e5ab7 +selection_foreground #1f1f1f +url_color #2a84d2 +cursor #4e5ab7 +active_border_color #ecba0f +active_tab_background #1f1f1f +active_tab_foreground #4e5ab7 +inactive_tab_background #f81118 +inactive_tab_foreground #2a84d2 + +# normal +color0 #1f1f1f +color1 #d6dbe5 +color2 #f3bd09 +color3 #1dd361 +color4 #5350b9 +color5 #0f7ddb +color6 #1081d6 +color7 #4e5ab7 + +# bright +color8 #ecba0f +color9 #de352e +color10 #f81118 +color11 #2dc55e +color12 #2a84d2 +color13 #1081d6 +color14 #ffffff +color15 #4e5ab7 diff --git a/kitty/colors/base16/base16-brushtrees-256.conf b/kitty/colors/base16/base16-brushtrees-256.conf new file mode 100755 index 0000000..d50685d --- /dev/null +++ b/kitty/colors/base16/base16-brushtrees-256.conf @@ -0,0 +1,41 @@ +# Base16 Brush Trees - kitty color config +# Abraham White <abelincoln.white@gmail.com> +background #e3efef +foreground #6d828e +selection_background #6d828e +selection_foreground #e3efef +url_color #8299a1 +cursor #6d828e +active_border_color #98afb5 +active_tab_background #e3efef +active_tab_foreground #6d828e +inactive_tab_background #c9dbdc +inactive_tab_foreground #8299a1 + +# normal +color0 #e3efef +color1 #b38686 +color2 #87b386 +color3 #aab386 +color4 #868cb3 +color5 #b386b2 +color6 #86b3b3 +color7 #6d828e + +# bright +color8 #98afb5 +color9 #b38686 +color10 #87b386 +color11 #aab386 +color12 #868cb3 +color13 #b386b2 +color14 #86b3b3 +color15 #6d828e + +# extended base16 colors +color16 #d8bba2 +color17 #b39f9f +color18 #c9dbdc +color19 #b0c5c8 +color20 #8299a1 +color21 #5a6d7a diff --git a/kitty/colors/base16/base16-brushtrees-dark-256.conf b/kitty/colors/base16/base16-brushtrees-dark-256.conf new file mode 100755 index 0000000..d452297 --- /dev/null +++ b/kitty/colors/base16/base16-brushtrees-dark-256.conf @@ -0,0 +1,41 @@ +# Base16 Brush Trees Dark - kitty color config +# Abraham White <abelincoln.white@gmail.com> +background #485867 +foreground #b0c5c8 +selection_background #b0c5c8 +selection_foreground #485867 +url_color #98afb5 +cursor #b0c5c8 +active_border_color #8299a1 +active_tab_background #485867 +active_tab_foreground #b0c5c8 +inactive_tab_background #5a6d7a +inactive_tab_foreground #98afb5 + +# normal +color0 #485867 +color1 #b38686 +color2 #87b386 +color3 #aab386 +color4 #868cb3 +color5 #b386b2 +color6 #86b3b3 +color7 #b0c5c8 + +# bright +color8 #8299a1 +color9 #b38686 +color10 #87b386 +color11 #aab386 +color12 #868cb3 +color13 #b386b2 +color14 #86b3b3 +color15 #b0c5c8 + +# extended base16 colors +color16 #d8bba2 +color17 #b39f9f +color18 #5a6d7a +color19 #6d828e +color20 #98afb5 +color21 #c9dbdc diff --git a/kitty/colors/base16/base16-brushtrees-dark.conf b/kitty/colors/base16/base16-brushtrees-dark.conf new file mode 100755 index 0000000..8c3f28b --- /dev/null +++ b/kitty/colors/base16/base16-brushtrees-dark.conf @@ -0,0 +1,33 @@ +# Base16 Brush Trees Dark - kitty color config +# Abraham White <abelincoln.white@gmail.com> +background #485867 +foreground #b0c5c8 +selection_background #b0c5c8 +selection_foreground #485867 +url_color #98afb5 +cursor #b0c5c8 +active_border_color #8299a1 +active_tab_background #485867 +active_tab_foreground #b0c5c8 +inactive_tab_background #5a6d7a +inactive_tab_foreground #98afb5 + +# normal +color0 #485867 +color1 #b38686 +color2 #87b386 +color3 #aab386 +color4 #868cb3 +color5 #b386b2 +color6 #86b3b3 +color7 #b0c5c8 + +# bright +color8 #8299a1 +color9 #d8bba2 +color10 #5a6d7a +color11 #6d828e +color12 #98afb5 +color13 #c9dbdc +color14 #b39f9f +color15 #b0c5c8 diff --git a/kitty/colors/base16/base16-brushtrees.conf b/kitty/colors/base16/base16-brushtrees.conf new file mode 100755 index 0000000..07834f8 --- /dev/null +++ b/kitty/colors/base16/base16-brushtrees.conf @@ -0,0 +1,33 @@ +# Base16 Brush Trees - kitty color config +# Abraham White <abelincoln.white@gmail.com> +background #e3efef +foreground #6d828e +selection_background #6d828e +selection_foreground #e3efef +url_color #8299a1 +cursor #6d828e +active_border_color #98afb5 +active_tab_background #e3efef +active_tab_foreground #6d828e +inactive_tab_background #c9dbdc +inactive_tab_foreground #8299a1 + +# normal +color0 #e3efef +color1 #b38686 +color2 #87b386 +color3 #aab386 +color4 #868cb3 +color5 #b386b2 +color6 #86b3b3 +color7 #6d828e + +# bright +color8 #98afb5 +color9 #d8bba2 +color10 #c9dbdc +color11 #b0c5c8 +color12 #8299a1 +color13 #5a6d7a +color14 #b39f9f +color15 #6d828e diff --git a/kitty/colors/base16/base16-chalk-256.conf b/kitty/colors/base16/base16-chalk-256.conf new file mode 100755 index 0000000..9eddeff --- /dev/null +++ b/kitty/colors/base16/base16-chalk-256.conf @@ -0,0 +1,41 @@ +# Base16 Chalk - kitty color config +# Chris Kempson (http://chriskempson.com) +background #151515 +foreground #d0d0d0 +selection_background #d0d0d0 +selection_foreground #151515 +url_color #b0b0b0 +cursor #d0d0d0 +active_border_color #505050 +active_tab_background #151515 +active_tab_foreground #d0d0d0 +inactive_tab_background #202020 +inactive_tab_foreground #b0b0b0 + +# normal +color0 #151515 +color1 #fb9fb1 +color2 #acc267 +color3 #ddb26f +color4 #6fc2ef +color5 #e1a3ee +color6 #12cfc0 +color7 #d0d0d0 + +# bright +color8 #505050 +color9 #fb9fb1 +color10 #acc267 +color11 #ddb26f +color12 #6fc2ef +color13 #e1a3ee +color14 #12cfc0 +color15 #d0d0d0 + +# extended base16 colors +color16 #eda987 +color17 #deaf8f +color18 #202020 +color19 #303030 +color20 #b0b0b0 +color21 #e0e0e0 diff --git a/kitty/colors/base16/base16-chalk.conf b/kitty/colors/base16/base16-chalk.conf new file mode 100755 index 0000000..9669622 --- /dev/null +++ b/kitty/colors/base16/base16-chalk.conf @@ -0,0 +1,33 @@ +# Base16 Chalk - kitty color config +# Chris Kempson (http://chriskempson.com) +background #151515 +foreground #d0d0d0 +selection_background #d0d0d0 +selection_foreground #151515 +url_color #b0b0b0 +cursor #d0d0d0 +active_border_color #505050 +active_tab_background #151515 +active_tab_foreground #d0d0d0 +inactive_tab_background #202020 +inactive_tab_foreground #b0b0b0 + +# normal +color0 #151515 +color1 #fb9fb1 +color2 #acc267 +color3 #ddb26f +color4 #6fc2ef +color5 #e1a3ee +color6 #12cfc0 +color7 #d0d0d0 + +# bright +color8 #505050 +color9 #eda987 +color10 #202020 +color11 #303030 +color12 #b0b0b0 +color13 #e0e0e0 +color14 #deaf8f +color15 #d0d0d0 diff --git a/kitty/colors/base16/base16-circus-256.conf b/kitty/colors/base16/base16-circus-256.conf new file mode 100755 index 0000000..2d32e1e --- /dev/null +++ b/kitty/colors/base16/base16-circus-256.conf @@ -0,0 +1,41 @@ +# Base16 Circus - kitty color config +# Stephan Boyer (https://github.com/stepchowfun) and Esther Wang (https://github.com/ewang12) +background #191919 +foreground #a7a7a7 +selection_background #a7a7a7 +selection_foreground #191919 +url_color #505050 +cursor #a7a7a7 +active_border_color #5f5a60 +active_tab_background #191919 +active_tab_foreground #a7a7a7 +inactive_tab_background #202020 +inactive_tab_foreground #505050 + +# normal +color0 #191919 +color1 #dc657d +color2 #84b97c +color3 #c3ba63 +color4 #639ee4 +color5 #b888e2 +color6 #4bb1a7 +color7 #a7a7a7 + +# bright +color8 #5f5a60 +color9 #dc657d +color10 #84b97c +color11 #c3ba63 +color12 #639ee4 +color13 #b888e2 +color14 #4bb1a7 +color15 #a7a7a7 + +# extended base16 colors +color16 #4bb1a7 +color17 #b888e2 +color18 #202020 +color19 #303030 +color20 #505050 +color21 #808080 diff --git a/kitty/colors/base16/base16-circus.conf b/kitty/colors/base16/base16-circus.conf new file mode 100755 index 0000000..0ab2d2f --- /dev/null +++ b/kitty/colors/base16/base16-circus.conf @@ -0,0 +1,33 @@ +# Base16 Circus - kitty color config +# Stephan Boyer (https://github.com/stepchowfun) and Esther Wang (https://github.com/ewang12) +background #191919 +foreground #a7a7a7 +selection_background #a7a7a7 +selection_foreground #191919 +url_color #505050 +cursor #a7a7a7 +active_border_color #5f5a60 +active_tab_background #191919 +active_tab_foreground #a7a7a7 +inactive_tab_background #202020 +inactive_tab_foreground #505050 + +# normal +color0 #191919 +color1 #dc657d +color2 #84b97c +color3 #c3ba63 +color4 #639ee4 +color5 #b888e2 +color6 #4bb1a7 +color7 #a7a7a7 + +# bright +color8 #5f5a60 +color9 #4bb1a7 +color10 #202020 +color11 #303030 +color12 #505050 +color13 #808080 +color14 #b888e2 +color15 #a7a7a7 diff --git a/kitty/colors/base16/base16-classic-dark-256.conf b/kitty/colors/base16/base16-classic-dark-256.conf new file mode 100755 index 0000000..38b6662 --- /dev/null +++ b/kitty/colors/base16/base16-classic-dark-256.conf @@ -0,0 +1,41 @@ +# Base16 Classic Dark - kitty color config +# Jason Heeris (http://heeris.id.au) +background #151515 +foreground #d0d0d0 +selection_background #d0d0d0 +selection_foreground #151515 +url_color #b0b0b0 +cursor #d0d0d0 +active_border_color #505050 +active_tab_background #151515 +active_tab_foreground #d0d0d0 +inactive_tab_background #202020 +inactive_tab_foreground #b0b0b0 + +# normal +color0 #151515 +color1 #ac4142 +color2 #90a959 +color3 #f4bf75 +color4 #6a9fb5 +color5 #aa759f +color6 #75b5aa +color7 #d0d0d0 + +# bright +color8 #505050 +color9 #ac4142 +color10 #90a959 +color11 #f4bf75 +color12 #6a9fb5 +color13 #aa759f +color14 #75b5aa +color15 #d0d0d0 + +# extended base16 colors +color16 #d28445 +color17 #8f5536 +color18 #202020 +color19 #303030 +color20 #b0b0b0 +color21 #e0e0e0 diff --git a/kitty/colors/base16/base16-classic-dark.conf b/kitty/colors/base16/base16-classic-dark.conf new file mode 100755 index 0000000..0081add --- /dev/null +++ b/kitty/colors/base16/base16-classic-dark.conf @@ -0,0 +1,33 @@ +# Base16 Classic Dark - kitty color config +# Jason Heeris (http://heeris.id.au) +background #151515 +foreground #d0d0d0 +selection_background #d0d0d0 +selection_foreground #151515 +url_color #b0b0b0 +cursor #d0d0d0 +active_border_color #505050 +active_tab_background #151515 +active_tab_foreground #d0d0d0 +inactive_tab_background #202020 +inactive_tab_foreground #b0b0b0 + +# normal +color0 #151515 +color1 #ac4142 +color2 #90a959 +color3 #f4bf75 +color4 #6a9fb5 +color5 #aa759f +color6 #75b5aa +color7 #d0d0d0 + +# bright +color8 #505050 +color9 #d28445 +color10 #202020 +color11 #303030 +color12 #b0b0b0 +color13 #e0e0e0 +color14 #8f5536 +color15 #d0d0d0 diff --git a/kitty/colors/base16/base16-classic-light-256.conf b/kitty/colors/base16/base16-classic-light-256.conf new file mode 100755 index 0000000..af47f11 --- /dev/null +++ b/kitty/colors/base16/base16-classic-light-256.conf @@ -0,0 +1,41 @@ +# Base16 Classic Light - kitty color config +# Jason Heeris (http://heeris.id.au) +background #f5f5f5 +foreground #303030 +selection_background #303030 +selection_foreground #f5f5f5 +url_color #505050 +cursor #303030 +active_border_color #b0b0b0 +active_tab_background #f5f5f5 +active_tab_foreground #303030 +inactive_tab_background #e0e0e0 +inactive_tab_foreground #505050 + +# normal +color0 #f5f5f5 +color1 #ac4142 +color2 #90a959 +color3 #f4bf75 +color4 #6a9fb5 +color5 #aa759f +color6 #75b5aa +color7 #303030 + +# bright +color8 #b0b0b0 +color9 #ac4142 +color10 #90a959 +color11 #f4bf75 +color12 #6a9fb5 +color13 #aa759f +color14 #75b5aa +color15 #303030 + +# extended base16 colors +color16 #d28445 +color17 #8f5536 +color18 #e0e0e0 +color19 #d0d0d0 +color20 #505050 +color21 #202020 diff --git a/kitty/colors/base16/base16-classic-light.conf b/kitty/colors/base16/base16-classic-light.conf new file mode 100755 index 0000000..bb2f231 --- /dev/null +++ b/kitty/colors/base16/base16-classic-light.conf @@ -0,0 +1,33 @@ +# Base16 Classic Light - kitty color config +# Jason Heeris (http://heeris.id.au) +background #f5f5f5 +foreground #303030 +selection_background #303030 +selection_foreground #f5f5f5 +url_color #505050 +cursor #303030 +active_border_color #b0b0b0 +active_tab_background #f5f5f5 +active_tab_foreground #303030 +inactive_tab_background #e0e0e0 +inactive_tab_foreground #505050 + +# normal +color0 #f5f5f5 +color1 #ac4142 +color2 #90a959 +color3 #f4bf75 +color4 #6a9fb5 +color5 #aa759f +color6 #75b5aa +color7 #303030 + +# bright +color8 #b0b0b0 +color9 #d28445 +color10 #e0e0e0 +color11 #d0d0d0 +color12 #505050 +color13 #202020 +color14 #8f5536 +color15 #303030 diff --git a/kitty/colors/base16/base16-codeschool-256.conf b/kitty/colors/base16/base16-codeschool-256.conf new file mode 100755 index 0000000..e7162c4 --- /dev/null +++ b/kitty/colors/base16/base16-codeschool-256.conf @@ -0,0 +1,41 @@ +# Base16 Codeschool - kitty color config +# blockloop +background #232c31 +foreground #9ea7a6 +selection_background #9ea7a6 +selection_foreground #232c31 +url_color #84898c +cursor #9ea7a6 +active_border_color #3f4944 +active_tab_background #232c31 +active_tab_foreground #9ea7a6 +inactive_tab_background #1c3657 +inactive_tab_foreground #84898c + +# normal +color0 #232c31 +color1 #2a5491 +color2 #237986 +color3 #a03b1e +color4 #484d79 +color5 #c59820 +color6 #b02f30 +color7 #9ea7a6 + +# bright +color8 #3f4944 +color9 #2a5491 +color10 #237986 +color11 #a03b1e +color12 #484d79 +color13 #c59820 +color14 #b02f30 +color15 #9ea7a6 + +# extended base16 colors +color16 #43820d +color17 #c98344 +color18 #1c3657 +color19 #2a343a +color20 #84898c +color21 #a7cfa3 diff --git a/kitty/colors/base16/base16-codeschool.conf b/kitty/colors/base16/base16-codeschool.conf new file mode 100755 index 0000000..ae8b1f6 --- /dev/null +++ b/kitty/colors/base16/base16-codeschool.conf @@ -0,0 +1,33 @@ +# Base16 Codeschool - kitty color config +# blockloop +background #232c31 +foreground #9ea7a6 +selection_background #9ea7a6 +selection_foreground #232c31 +url_color #84898c +cursor #9ea7a6 +active_border_color #3f4944 +active_tab_background #232c31 +active_tab_foreground #9ea7a6 +inactive_tab_background #1c3657 +inactive_tab_foreground #84898c + +# normal +color0 #232c31 +color1 #2a5491 +color2 #237986 +color3 #a03b1e +color4 #484d79 +color5 #c59820 +color6 #b02f30 +color7 #9ea7a6 + +# bright +color8 #3f4944 +color9 #43820d +color10 #1c3657 +color11 #2a343a +color12 #84898c +color13 #a7cfa3 +color14 #c98344 +color15 #9ea7a6 diff --git a/kitty/colors/base16/base16-cupcake-256.conf b/kitty/colors/base16/base16-cupcake-256.conf new file mode 100755 index 0000000..9c776a2 --- /dev/null +++ b/kitty/colors/base16/base16-cupcake-256.conf @@ -0,0 +1,41 @@ +# Base16 Cupcake - kitty color config +# Chris Kempson (http://chriskempson.com) +background #fbf1f2 +foreground #8b8198 +selection_background #8b8198 +selection_foreground #fbf1f2 +url_color #a59daf +cursor #8b8198 +active_border_color #bfb9c6 +active_tab_background #fbf1f2 +active_tab_foreground #8b8198 +inactive_tab_background #f2f1f4 +inactive_tab_foreground #a59daf + +# normal +color0 #fbf1f2 +color1 #d57e85 +color2 #a3b367 +color3 #dcb16c +color4 #7297b9 +color5 #bb99b4 +color6 #69a9a7 +color7 #8b8198 + +# bright +color8 #bfb9c6 +color9 #d57e85 +color10 #a3b367 +color11 #dcb16c +color12 #7297b9 +color13 #bb99b4 +color14 #69a9a7 +color15 #8b8198 + +# extended base16 colors +color16 #ebb790 +color17 #baa58c +color18 #f2f1f4 +color19 #d8d5dd +color20 #a59daf +color21 #72677e diff --git a/kitty/colors/base16/base16-cupcake.conf b/kitty/colors/base16/base16-cupcake.conf new file mode 100755 index 0000000..68012eb --- /dev/null +++ b/kitty/colors/base16/base16-cupcake.conf @@ -0,0 +1,33 @@ +# Base16 Cupcake - kitty color config +# Chris Kempson (http://chriskempson.com) +background #fbf1f2 +foreground #8b8198 +selection_background #8b8198 +selection_foreground #fbf1f2 +url_color #a59daf +cursor #8b8198 +active_border_color #bfb9c6 +active_tab_background #fbf1f2 +active_tab_foreground #8b8198 +inactive_tab_background #f2f1f4 +inactive_tab_foreground #a59daf + +# normal +color0 #fbf1f2 +color1 #d57e85 +color2 #a3b367 +color3 #dcb16c +color4 #7297b9 +color5 #bb99b4 +color6 #69a9a7 +color7 #8b8198 + +# bright +color8 #bfb9c6 +color9 #ebb790 +color10 #f2f1f4 +color11 #d8d5dd +color12 #a59daf +color13 #72677e +color14 #baa58c +color15 #8b8198 diff --git a/kitty/colors/base16/base16-cupertino-256.conf b/kitty/colors/base16/base16-cupertino-256.conf new file mode 100755 index 0000000..11ad428 --- /dev/null +++ b/kitty/colors/base16/base16-cupertino-256.conf @@ -0,0 +1,41 @@ +# Base16 Cupertino - kitty color config +# Defman21 +background #ffffff +foreground #404040 +selection_background #404040 +selection_foreground #ffffff +url_color #808080 +cursor #404040 +active_border_color #808080 +active_tab_background #ffffff +active_tab_foreground #404040 +inactive_tab_background #c0c0c0 +inactive_tab_foreground #808080 + +# normal +color0 #ffffff +color1 #c41a15 +color2 #007400 +color3 #826b28 +color4 #0000ff +color5 #a90d91 +color6 #318495 +color7 #404040 + +# bright +color8 #808080 +color9 #c41a15 +color10 #007400 +color11 #826b28 +color12 #0000ff +color13 #a90d91 +color14 #318495 +color15 #404040 + +# extended base16 colors +color16 #eb8500 +color17 #826b28 +color18 #c0c0c0 +color19 #c0c0c0 +color20 #808080 +color21 #404040 diff --git a/kitty/colors/base16/base16-cupertino.conf b/kitty/colors/base16/base16-cupertino.conf new file mode 100755 index 0000000..4f7daed --- /dev/null +++ b/kitty/colors/base16/base16-cupertino.conf @@ -0,0 +1,33 @@ +# Base16 Cupertino - kitty color config +# Defman21 +background #ffffff +foreground #404040 +selection_background #404040 +selection_foreground #ffffff +url_color #808080 +cursor #404040 +active_border_color #808080 +active_tab_background #ffffff +active_tab_foreground #404040 +inactive_tab_background #c0c0c0 +inactive_tab_foreground #808080 + +# normal +color0 #ffffff +color1 #c41a15 +color2 #007400 +color3 #826b28 +color4 #0000ff +color5 #a90d91 +color6 #318495 +color7 #404040 + +# bright +color8 #808080 +color9 #eb8500 +color10 #c0c0c0 +color11 #c0c0c0 +color12 #808080 +color13 #404040 +color14 #826b28 +color15 #404040 diff --git a/kitty/colors/base16/base16-darktooth-256.conf b/kitty/colors/base16/base16-darktooth-256.conf new file mode 100755 index 0000000..02f11d1 --- /dev/null +++ b/kitty/colors/base16/base16-darktooth-256.conf @@ -0,0 +1,41 @@ +# Base16 Darktooth - kitty color config +# Jason Milkins (https://github.com/jasonm23) +background #1d2021 +foreground #a89984 +selection_background #a89984 +selection_foreground #1d2021 +url_color #928374 +cursor #a89984 +active_border_color #665c54 +active_tab_background #1d2021 +active_tab_foreground #a89984 +inactive_tab_background #32302f +inactive_tab_foreground #928374 + +# normal +color0 #1d2021 +color1 #fb543f +color2 #95c085 +color3 #fac03b +color4 #0d6678 +color5 #8f4673 +color6 #8ba59b +color7 #a89984 + +# bright +color8 #665c54 +color9 #fb543f +color10 #95c085 +color11 #fac03b +color12 #0d6678 +color13 #8f4673 +color14 #8ba59b +color15 #a89984 + +# extended base16 colors +color16 #fe8625 +color17 #a87322 +color18 #32302f +color19 #504945 +color20 #928374 +color21 #d5c4a1 diff --git a/kitty/colors/base16/base16-darktooth.conf b/kitty/colors/base16/base16-darktooth.conf new file mode 100755 index 0000000..ae5ffb0 --- /dev/null +++ b/kitty/colors/base16/base16-darktooth.conf @@ -0,0 +1,33 @@ +# Base16 Darktooth - kitty color config +# Jason Milkins (https://github.com/jasonm23) +background #1d2021 +foreground #a89984 +selection_background #a89984 +selection_foreground #1d2021 +url_color #928374 +cursor #a89984 +active_border_color #665c54 +active_tab_background #1d2021 +active_tab_foreground #a89984 +inactive_tab_background #32302f +inactive_tab_foreground #928374 + +# normal +color0 #1d2021 +color1 #fb543f +color2 #95c085 +color3 #fac03b +color4 #0d6678 +color5 #8f4673 +color6 #8ba59b +color7 #a89984 + +# bright +color8 #665c54 +color9 #fe8625 +color10 #32302f +color11 #504945 +color12 #928374 +color13 #d5c4a1 +color14 #a87322 +color15 #a89984 diff --git a/kitty/colors/base16/base16-default-dark-256.conf b/kitty/colors/base16/base16-default-dark-256.conf new file mode 100755 index 0000000..a445061 --- /dev/null +++ b/kitty/colors/base16/base16-default-dark-256.conf @@ -0,0 +1,41 @@ +# Base16 Default Dark - kitty color config +# Chris Kempson (http://chriskempson.com) +background #181818 +foreground #d8d8d8 +selection_background #d8d8d8 +selection_foreground #181818 +url_color #b8b8b8 +cursor #d8d8d8 +active_border_color #585858 +active_tab_background #181818 +active_tab_foreground #d8d8d8 +inactive_tab_background #282828 +inactive_tab_foreground #b8b8b8 + +# normal +color0 #181818 +color1 #ab4642 +color2 #a1b56c +color3 #f7ca88 +color4 #7cafc2 +color5 #ba8baf +color6 #86c1b9 +color7 #d8d8d8 + +# bright +color8 #585858 +color9 #ab4642 +color10 #a1b56c +color11 #f7ca88 +color12 #7cafc2 +color13 #ba8baf +color14 #86c1b9 +color15 #d8d8d8 + +# extended base16 colors +color16 #dc9656 +color17 #a16946 +color18 #282828 +color19 #383838 +color20 #b8b8b8 +color21 #e8e8e8 diff --git a/kitty/colors/base16/base16-default-dark.conf b/kitty/colors/base16/base16-default-dark.conf new file mode 100755 index 0000000..120dc1a --- /dev/null +++ b/kitty/colors/base16/base16-default-dark.conf @@ -0,0 +1,33 @@ +# Base16 Default Dark - kitty color config +# Chris Kempson (http://chriskempson.com) +background #181818 +foreground #d8d8d8 +selection_background #d8d8d8 +selection_foreground #181818 +url_color #b8b8b8 +cursor #d8d8d8 +active_border_color #585858 +active_tab_background #181818 +active_tab_foreground #d8d8d8 +inactive_tab_background #282828 +inactive_tab_foreground #b8b8b8 + +# normal +color0 #181818 +color1 #ab4642 +color2 #a1b56c +color3 #f7ca88 +color4 #7cafc2 +color5 #ba8baf +color6 #86c1b9 +color7 #d8d8d8 + +# bright +color8 #585858 +color9 #dc9656 +color10 #282828 +color11 #383838 +color12 #b8b8b8 +color13 #e8e8e8 +color14 #a16946 +color15 #d8d8d8 diff --git a/kitty/colors/base16/base16-default-light-256.conf b/kitty/colors/base16/base16-default-light-256.conf new file mode 100755 index 0000000..2736953 --- /dev/null +++ b/kitty/colors/base16/base16-default-light-256.conf @@ -0,0 +1,41 @@ +# Base16 Default Light - kitty color config +# Chris Kempson (http://chriskempson.com) +background #f8f8f8 +foreground #383838 +selection_background #383838 +selection_foreground #f8f8f8 +url_color #585858 +cursor #383838 +active_border_color #b8b8b8 +active_tab_background #f8f8f8 +active_tab_foreground #383838 +inactive_tab_background #e8e8e8 +inactive_tab_foreground #585858 + +# normal +color0 #f8f8f8 +color1 #ab4642 +color2 #a1b56c +color3 #f7ca88 +color4 #7cafc2 +color5 #ba8baf +color6 #86c1b9 +color7 #383838 + +# bright +color8 #b8b8b8 +color9 #ab4642 +color10 #a1b56c +color11 #f7ca88 +color12 #7cafc2 +color13 #ba8baf +color14 #86c1b9 +color15 #383838 + +# extended base16 colors +color16 #dc9656 +color17 #a16946 +color18 #e8e8e8 +color19 #d8d8d8 +color20 #585858 +color21 #282828 diff --git a/kitty/colors/base16/base16-default-light.conf b/kitty/colors/base16/base16-default-light.conf new file mode 100755 index 0000000..40a33b8 --- /dev/null +++ b/kitty/colors/base16/base16-default-light.conf @@ -0,0 +1,33 @@ +# Base16 Default Light - kitty color config +# Chris Kempson (http://chriskempson.com) +background #f8f8f8 +foreground #383838 +selection_background #383838 +selection_foreground #f8f8f8 +url_color #585858 +cursor #383838 +active_border_color #b8b8b8 +active_tab_background #f8f8f8 +active_tab_foreground #383838 +inactive_tab_background #e8e8e8 +inactive_tab_foreground #585858 + +# normal +color0 #f8f8f8 +color1 #ab4642 +color2 #a1b56c +color3 #f7ca88 +color4 #7cafc2 +color5 #ba8baf +color6 #86c1b9 +color7 #383838 + +# bright +color8 #b8b8b8 +color9 #dc9656 +color10 #e8e8e8 +color11 #d8d8d8 +color12 #585858 +color13 #282828 +color14 #a16946 +color15 #383838 diff --git a/kitty/colors/base16/base16-dracula-256.conf b/kitty/colors/base16/base16-dracula-256.conf new file mode 100755 index 0000000..f58f4ed --- /dev/null +++ b/kitty/colors/base16/base16-dracula-256.conf @@ -0,0 +1,41 @@ +# Base16 Dracula - kitty color config +# Mike Barkmin (http://github.com/mikebarkmin) based on Dracula Theme (http://github.com/dracula) +background #282936 +foreground #e9e9f4 +selection_background #e9e9f4 +selection_foreground #282936 +url_color #62d6e8 +cursor #e9e9f4 +active_border_color #4d4f68 +active_tab_background #282936 +active_tab_foreground #e9e9f4 +inactive_tab_background #3a3c4e +inactive_tab_foreground #62d6e8 + +# normal +color0 #282936 +color1 #ea51b2 +color2 #00f769 +color3 #ebff87 +color4 #62d6e8 +color5 #b45bcf +color6 #a1efe4 +color7 #e9e9f4 + +# bright +color8 #4d4f68 +color9 #ea51b2 +color10 #00f769 +color11 #ebff87 +color12 #62d6e8 +color13 #b45bcf +color14 #a1efe4 +color15 #e9e9f4 + +# extended base16 colors +color16 #b45bcf +color17 #00f769 +color18 #3a3c4e +color19 #626483 +color20 #62d6e8 +color21 #f1f2f8 diff --git a/kitty/colors/base16/base16-dracula.conf b/kitty/colors/base16/base16-dracula.conf new file mode 100755 index 0000000..a77dbc6 --- /dev/null +++ b/kitty/colors/base16/base16-dracula.conf @@ -0,0 +1,33 @@ +# Base16 Dracula - kitty color config +# Mike Barkmin (http://github.com/mikebarkmin) based on Dracula Theme (http://github.com/dracula) +background #282936 +foreground #e9e9f4 +selection_background #e9e9f4 +selection_foreground #282936 +url_color #62d6e8 +cursor #e9e9f4 +active_border_color #4d4f68 +active_tab_background #282936 +active_tab_foreground #e9e9f4 +inactive_tab_background #3a3c4e +inactive_tab_foreground #62d6e8 + +# normal +color0 #282936 +color1 #ea51b2 +color2 #00f769 +color3 #ebff87 +color4 #62d6e8 +color5 #b45bcf +color6 #a1efe4 +color7 #e9e9f4 + +# bright +color8 #4d4f68 +color9 #b45bcf +color10 #3a3c4e +color11 #626483 +color12 #62d6e8 +color13 #f1f2f8 +color14 #00f769 +color15 #e9e9f4 diff --git a/kitty/colors/base16/base16-eighties-256.conf b/kitty/colors/base16/base16-eighties-256.conf new file mode 100755 index 0000000..c2b65d2 --- /dev/null +++ b/kitty/colors/base16/base16-eighties-256.conf @@ -0,0 +1,41 @@ +# Base16 Eighties - kitty color config +# Chris Kempson (http://chriskempson.com) +background #2d2d2d +foreground #d3d0c8 +selection_background #d3d0c8 +selection_foreground #2d2d2d +url_color #a09f93 +cursor #d3d0c8 +active_border_color #747369 +active_tab_background #2d2d2d +active_tab_foreground #d3d0c8 +inactive_tab_background #393939 +inactive_tab_foreground #a09f93 + +# normal +color0 #2d2d2d +color1 #f2777a +color2 #99cc99 +color3 #ffcc66 +color4 #6699cc +color5 #cc99cc +color6 #66cccc +color7 #d3d0c8 + +# bright +color8 #747369 +color9 #f2777a +color10 #99cc99 +color11 #ffcc66 +color12 #6699cc +color13 #cc99cc +color14 #66cccc +color15 #d3d0c8 + +# extended base16 colors +color16 #f99157 +color17 #d27b53 +color18 #393939 +color19 #515151 +color20 #a09f93 +color21 #e8e6df diff --git a/kitty/colors/base16/base16-eighties.conf b/kitty/colors/base16/base16-eighties.conf new file mode 100755 index 0000000..781a555 --- /dev/null +++ b/kitty/colors/base16/base16-eighties.conf @@ -0,0 +1,33 @@ +# Base16 Eighties - kitty color config +# Chris Kempson (http://chriskempson.com) +background #2d2d2d +foreground #d3d0c8 +selection_background #d3d0c8 +selection_foreground #2d2d2d +url_color #a09f93 +cursor #d3d0c8 +active_border_color #747369 +active_tab_background #2d2d2d +active_tab_foreground #d3d0c8 +inactive_tab_background #393939 +inactive_tab_foreground #a09f93 + +# normal +color0 #2d2d2d +color1 #f2777a +color2 #99cc99 +color3 #ffcc66 +color4 #6699cc +color5 #cc99cc +color6 #66cccc +color7 #d3d0c8 + +# bright +color8 #747369 +color9 #f99157 +color10 #393939 +color11 #515151 +color12 #a09f93 +color13 #e8e6df +color14 #d27b53 +color15 #d3d0c8 diff --git a/kitty/colors/base16/base16-embers-256.conf b/kitty/colors/base16/base16-embers-256.conf new file mode 100755 index 0000000..afa4ad1 --- /dev/null +++ b/kitty/colors/base16/base16-embers-256.conf @@ -0,0 +1,41 @@ +# Base16 Embers - kitty color config +# Jannik Siebert (https://github.com/janniks) +background #16130f +foreground #a39a90 +selection_background #a39a90 +selection_foreground #16130f +url_color #8a8075 +cursor #a39a90 +active_border_color #5a5047 +active_tab_background #16130f +active_tab_foreground #a39a90 +inactive_tab_background #2c2620 +inactive_tab_foreground #8a8075 + +# normal +color0 #16130f +color1 #826d57 +color2 #57826d +color3 #6d8257 +color4 #6d5782 +color5 #82576d +color6 #576d82 +color7 #a39a90 + +# bright +color8 #5a5047 +color9 #826d57 +color10 #57826d +color11 #6d8257 +color12 #6d5782 +color13 #82576d +color14 #576d82 +color15 #a39a90 + +# extended base16 colors +color16 #828257 +color17 #825757 +color18 #2c2620 +color19 #433b32 +color20 #8a8075 +color21 #beb6ae diff --git a/kitty/colors/base16/base16-embers.conf b/kitty/colors/base16/base16-embers.conf new file mode 100755 index 0000000..3484f4a --- /dev/null +++ b/kitty/colors/base16/base16-embers.conf @@ -0,0 +1,33 @@ +# Base16 Embers - kitty color config +# Jannik Siebert (https://github.com/janniks) +background #16130f +foreground #a39a90 +selection_background #a39a90 +selection_foreground #16130f +url_color #8a8075 +cursor #a39a90 +active_border_color #5a5047 +active_tab_background #16130f +active_tab_foreground #a39a90 +inactive_tab_background #2c2620 +inactive_tab_foreground #8a8075 + +# normal +color0 #16130f +color1 #826d57 +color2 #57826d +color3 #6d8257 +color4 #6d5782 +color5 #82576d +color6 #576d82 +color7 #a39a90 + +# bright +color8 #5a5047 +color9 #828257 +color10 #2c2620 +color11 #433b32 +color12 #8a8075 +color13 #beb6ae +color14 #825757 +color15 #a39a90 diff --git a/kitty/colors/base16/base16-flat-256.conf b/kitty/colors/base16/base16-flat-256.conf new file mode 100755 index 0000000..56af338 --- /dev/null +++ b/kitty/colors/base16/base16-flat-256.conf @@ -0,0 +1,41 @@ +# Base16 Flat - kitty color config +# Chris Kempson (http://chriskempson.com) +background #2c3e50 +foreground #e0e0e0 +selection_background #e0e0e0 +selection_foreground #2c3e50 +url_color #bdc3c7 +cursor #e0e0e0 +active_border_color #95a5a6 +active_tab_background #2c3e50 +active_tab_foreground #e0e0e0 +inactive_tab_background #34495e +inactive_tab_foreground #bdc3c7 + +# normal +color0 #2c3e50 +color1 #e74c3c +color2 #2ecc71 +color3 #f1c40f +color4 #3498db +color5 #9b59b6 +color6 #1abc9c +color7 #e0e0e0 + +# bright +color8 #95a5a6 +color9 #e74c3c +color10 #2ecc71 +color11 #f1c40f +color12 #3498db +color13 #9b59b6 +color14 #1abc9c +color15 #e0e0e0 + +# extended base16 colors +color16 #e67e22 +color17 #be643c +color18 #34495e +color19 #7f8c8d +color20 #bdc3c7 +color21 #f5f5f5 diff --git a/kitty/colors/base16/base16-flat.conf b/kitty/colors/base16/base16-flat.conf new file mode 100755 index 0000000..f1ff853 --- /dev/null +++ b/kitty/colors/base16/base16-flat.conf @@ -0,0 +1,33 @@ +# Base16 Flat - kitty color config +# Chris Kempson (http://chriskempson.com) +background #2c3e50 +foreground #e0e0e0 +selection_background #e0e0e0 +selection_foreground #2c3e50 +url_color #bdc3c7 +cursor #e0e0e0 +active_border_color #95a5a6 +active_tab_background #2c3e50 +active_tab_foreground #e0e0e0 +inactive_tab_background #34495e +inactive_tab_foreground #bdc3c7 + +# normal +color0 #2c3e50 +color1 #e74c3c +color2 #2ecc71 +color3 #f1c40f +color4 #3498db +color5 #9b59b6 +color6 #1abc9c +color7 #e0e0e0 + +# bright +color8 #95a5a6 +color9 #e67e22 +color10 #34495e +color11 #7f8c8d +color12 #bdc3c7 +color13 #f5f5f5 +color14 #be643c +color15 #e0e0e0 diff --git a/kitty/colors/base16/base16-github-256.conf b/kitty/colors/base16/base16-github-256.conf new file mode 100755 index 0000000..5bf5188 --- /dev/null +++ b/kitty/colors/base16/base16-github-256.conf @@ -0,0 +1,41 @@ +# Base16 Github - kitty color config +# Defman21 +background #ffffff +foreground #333333 +selection_background #333333 +selection_foreground #ffffff +url_color #e8e8e8 +cursor #333333 +active_border_color #969896 +active_tab_background #ffffff +active_tab_foreground #333333 +inactive_tab_background #f5f5f5 +inactive_tab_foreground #e8e8e8 + +# normal +color0 #ffffff +color1 #ed6a43 +color2 #183691 +color3 #795da3 +color4 #795da3 +color5 #a71d5d +color6 #183691 +color7 #333333 + +# bright +color8 #969896 +color9 #ed6a43 +color10 #183691 +color11 #795da3 +color12 #795da3 +color13 #a71d5d +color14 #183691 +color15 #333333 + +# extended base16 colors +color16 #0086b3 +color17 #333333 +color18 #f5f5f5 +color19 #c8c8fa +color20 #e8e8e8 +color21 #ffffff diff --git a/kitty/colors/base16/base16-github.conf b/kitty/colors/base16/base16-github.conf new file mode 100755 index 0000000..eef7000 --- /dev/null +++ b/kitty/colors/base16/base16-github.conf @@ -0,0 +1,33 @@ +# Base16 Github - kitty color config +# Defman21 +background #ffffff +foreground #333333 +selection_background #333333 +selection_foreground #ffffff +url_color #e8e8e8 +cursor #333333 +active_border_color #969896 +active_tab_background #ffffff +active_tab_foreground #333333 +inactive_tab_background #f5f5f5 +inactive_tab_foreground #e8e8e8 + +# normal +color0 #ffffff +color1 #ed6a43 +color2 #183691 +color3 #795da3 +color4 #795da3 +color5 #a71d5d +color6 #183691 +color7 #333333 + +# bright +color8 #969896 +color9 #0086b3 +color10 #f5f5f5 +color11 #c8c8fa +color12 #e8e8e8 +color13 #ffffff +color14 #333333 +color15 #333333 diff --git a/kitty/colors/base16/base16-google-dark-256.conf b/kitty/colors/base16/base16-google-dark-256.conf new file mode 100755 index 0000000..13b1833 --- /dev/null +++ b/kitty/colors/base16/base16-google-dark-256.conf @@ -0,0 +1,41 @@ +# Base16 Google Dark - kitty color config +# Seth Wright (http://sethawright.com) +background #1d1f21 +foreground #c5c8c6 +selection_background #c5c8c6 +selection_foreground #1d1f21 +url_color #b4b7b4 +cursor #c5c8c6 +active_border_color #969896 +active_tab_background #1d1f21 +active_tab_foreground #c5c8c6 +inactive_tab_background #282a2e +inactive_tab_foreground #b4b7b4 + +# normal +color0 #1d1f21 +color1 #cc342b +color2 #198844 +color3 #fba922 +color4 #3971ed +color5 #a36ac7 +color6 #3971ed +color7 #c5c8c6 + +# bright +color8 #969896 +color9 #cc342b +color10 #198844 +color11 #fba922 +color12 #3971ed +color13 #a36ac7 +color14 #3971ed +color15 #c5c8c6 + +# extended base16 colors +color16 #f96a38 +color17 #3971ed +color18 #282a2e +color19 #373b41 +color20 #b4b7b4 +color21 #e0e0e0 diff --git a/kitty/colors/base16/base16-google-dark.conf b/kitty/colors/base16/base16-google-dark.conf new file mode 100755 index 0000000..878b678 --- /dev/null +++ b/kitty/colors/base16/base16-google-dark.conf @@ -0,0 +1,33 @@ +# Base16 Google Dark - kitty color config +# Seth Wright (http://sethawright.com) +background #1d1f21 +foreground #c5c8c6 +selection_background #c5c8c6 +selection_foreground #1d1f21 +url_color #b4b7b4 +cursor #c5c8c6 +active_border_color #969896 +active_tab_background #1d1f21 +active_tab_foreground #c5c8c6 +inactive_tab_background #282a2e +inactive_tab_foreground #b4b7b4 + +# normal +color0 #1d1f21 +color1 #cc342b +color2 #198844 +color3 #fba922 +color4 #3971ed +color5 #a36ac7 +color6 #3971ed +color7 #c5c8c6 + +# bright +color8 #969896 +color9 #f96a38 +color10 #282a2e +color11 #373b41 +color12 #b4b7b4 +color13 #e0e0e0 +color14 #3971ed +color15 #c5c8c6 diff --git a/kitty/colors/base16/base16-google-light-256.conf b/kitty/colors/base16/base16-google-light-256.conf new file mode 100755 index 0000000..bce1aaa --- /dev/null +++ b/kitty/colors/base16/base16-google-light-256.conf @@ -0,0 +1,41 @@ +# Base16 Google Light - kitty color config +# Seth Wright (http://sethawright.com) +background #ffffff +foreground #373b41 +selection_background #373b41 +selection_foreground #ffffff +url_color #969896 +cursor #373b41 +active_border_color #b4b7b4 +active_tab_background #ffffff +active_tab_foreground #373b41 +inactive_tab_background #e0e0e0 +inactive_tab_foreground #969896 + +# normal +color0 #ffffff +color1 #cc342b +color2 #198844 +color3 #fba922 +color4 #3971ed +color5 #a36ac7 +color6 #3971ed +color7 #373b41 + +# bright +color8 #b4b7b4 +color9 #cc342b +color10 #198844 +color11 #fba922 +color12 #3971ed +color13 #a36ac7 +color14 #3971ed +color15 #373b41 + +# extended base16 colors +color16 #f96a38 +color17 #3971ed +color18 #e0e0e0 +color19 #c5c8c6 +color20 #969896 +color21 #282a2e diff --git a/kitty/colors/base16/base16-google-light.conf b/kitty/colors/base16/base16-google-light.conf new file mode 100755 index 0000000..1e1a05e --- /dev/null +++ b/kitty/colors/base16/base16-google-light.conf @@ -0,0 +1,33 @@ +# Base16 Google Light - kitty color config +# Seth Wright (http://sethawright.com) +background #ffffff +foreground #373b41 +selection_background #373b41 +selection_foreground #ffffff +url_color #969896 +cursor #373b41 +active_border_color #b4b7b4 +active_tab_background #ffffff +active_tab_foreground #373b41 +inactive_tab_background #e0e0e0 +inactive_tab_foreground #969896 + +# normal +color0 #ffffff +color1 #cc342b +color2 #198844 +color3 #fba922 +color4 #3971ed +color5 #a36ac7 +color6 #3971ed +color7 #373b41 + +# bright +color8 #b4b7b4 +color9 #f96a38 +color10 #e0e0e0 +color11 #c5c8c6 +color12 #969896 +color13 #282a2e +color14 #3971ed +color15 #373b41 diff --git a/kitty/colors/base16/base16-grayscale-dark-256.conf b/kitty/colors/base16/base16-grayscale-dark-256.conf new file mode 100755 index 0000000..2a560f6 --- /dev/null +++ b/kitty/colors/base16/base16-grayscale-dark-256.conf @@ -0,0 +1,41 @@ +# Base16 Grayscale Dark - kitty color config +# Alexandre Gavioli (https://github.com/Alexx2/) +background #101010 +foreground #b9b9b9 +selection_background #b9b9b9 +selection_foreground #101010 +url_color #ababab +cursor #b9b9b9 +active_border_color #525252 +active_tab_background #101010 +active_tab_foreground #b9b9b9 +inactive_tab_background #252525 +inactive_tab_foreground #ababab + +# normal +color0 #101010 +color1 #7c7c7c +color2 #8e8e8e +color3 #a0a0a0 +color4 #686868 +color5 #747474 +color6 #868686 +color7 #b9b9b9 + +# bright +color8 #525252 +color9 #7c7c7c +color10 #8e8e8e +color11 #a0a0a0 +color12 #686868 +color13 #747474 +color14 #868686 +color15 #b9b9b9 + +# extended base16 colors +color16 #999999 +color17 #5e5e5e +color18 #252525 +color19 #464646 +color20 #ababab +color21 #e3e3e3 diff --git a/kitty/colors/base16/base16-grayscale-dark.conf b/kitty/colors/base16/base16-grayscale-dark.conf new file mode 100755 index 0000000..58ba776 --- /dev/null +++ b/kitty/colors/base16/base16-grayscale-dark.conf @@ -0,0 +1,33 @@ +# Base16 Grayscale Dark - kitty color config +# Alexandre Gavioli (https://github.com/Alexx2/) +background #101010 +foreground #b9b9b9 +selection_background #b9b9b9 +selection_foreground #101010 +url_color #ababab +cursor #b9b9b9 +active_border_color #525252 +active_tab_background #101010 +active_tab_foreground #b9b9b9 +inactive_tab_background #252525 +inactive_tab_foreground #ababab + +# normal +color0 #101010 +color1 #7c7c7c +color2 #8e8e8e +color3 #a0a0a0 +color4 #686868 +color5 #747474 +color6 #868686 +color7 #b9b9b9 + +# bright +color8 #525252 +color9 #999999 +color10 #252525 +color11 #464646 +color12 #ababab +color13 #e3e3e3 +color14 #5e5e5e +color15 #b9b9b9 diff --git a/kitty/colors/base16/base16-grayscale-light-256.conf b/kitty/colors/base16/base16-grayscale-light-256.conf new file mode 100755 index 0000000..08bf714 --- /dev/null +++ b/kitty/colors/base16/base16-grayscale-light-256.conf @@ -0,0 +1,41 @@ +# Base16 Grayscale Light - kitty color config +# Alexandre Gavioli (https://github.com/Alexx2/) +background #f7f7f7 +foreground #464646 +selection_background #464646 +selection_foreground #f7f7f7 +url_color #525252 +cursor #464646 +active_border_color #ababab +active_tab_background #f7f7f7 +active_tab_foreground #464646 +inactive_tab_background #e3e3e3 +inactive_tab_foreground #525252 + +# normal +color0 #f7f7f7 +color1 #7c7c7c +color2 #8e8e8e +color3 #a0a0a0 +color4 #686868 +color5 #747474 +color6 #868686 +color7 #464646 + +# bright +color8 #ababab +color9 #7c7c7c +color10 #8e8e8e +color11 #a0a0a0 +color12 #686868 +color13 #747474 +color14 #868686 +color15 #464646 + +# extended base16 colors +color16 #999999 +color17 #5e5e5e +color18 #e3e3e3 +color19 #b9b9b9 +color20 #525252 +color21 #252525 diff --git a/kitty/colors/base16/base16-grayscale-light.conf b/kitty/colors/base16/base16-grayscale-light.conf new file mode 100755 index 0000000..3f59d2a --- /dev/null +++ b/kitty/colors/base16/base16-grayscale-light.conf @@ -0,0 +1,33 @@ +# Base16 Grayscale Light - kitty color config +# Alexandre Gavioli (https://github.com/Alexx2/) +background #f7f7f7 +foreground #464646 +selection_background #464646 +selection_foreground #f7f7f7 +url_color #525252 +cursor #464646 +active_border_color #ababab +active_tab_background #f7f7f7 +active_tab_foreground #464646 +inactive_tab_background #e3e3e3 +inactive_tab_foreground #525252 + +# normal +color0 #f7f7f7 +color1 #7c7c7c +color2 #8e8e8e +color3 #a0a0a0 +color4 #686868 +color5 #747474 +color6 #868686 +color7 #464646 + +# bright +color8 #ababab +color9 #999999 +color10 #e3e3e3 +color11 #b9b9b9 +color12 #525252 +color13 #252525 +color14 #5e5e5e +color15 #464646 diff --git a/kitty/colors/base16/base16-greenscreen-256.conf b/kitty/colors/base16/base16-greenscreen-256.conf new file mode 100755 index 0000000..6025a37 --- /dev/null +++ b/kitty/colors/base16/base16-greenscreen-256.conf @@ -0,0 +1,41 @@ +# Base16 Green Screen - kitty color config +# Chris Kempson (http://chriskempson.com) +background #001100 +foreground #00bb00 +selection_background #00bb00 +selection_foreground #001100 +url_color #009900 +cursor #00bb00 +active_border_color #007700 +active_tab_background #001100 +active_tab_foreground #00bb00 +inactive_tab_background #003300 +inactive_tab_foreground #009900 + +# normal +color0 #001100 +color1 #007700 +color2 #00bb00 +color3 #007700 +color4 #009900 +color5 #00bb00 +color6 #005500 +color7 #00bb00 + +# bright +color8 #007700 +color9 #007700 +color10 #00bb00 +color11 #007700 +color12 #009900 +color13 #00bb00 +color14 #005500 +color15 #00bb00 + +# extended base16 colors +color16 #009900 +color17 #005500 +color18 #003300 +color19 #005500 +color20 #009900 +color21 #00dd00 diff --git a/kitty/colors/base16/base16-greenscreen.conf b/kitty/colors/base16/base16-greenscreen.conf new file mode 100755 index 0000000..5cbe269 --- /dev/null +++ b/kitty/colors/base16/base16-greenscreen.conf @@ -0,0 +1,33 @@ +# Base16 Green Screen - kitty color config +# Chris Kempson (http://chriskempson.com) +background #001100 +foreground #00bb00 +selection_background #00bb00 +selection_foreground #001100 +url_color #009900 +cursor #00bb00 +active_border_color #007700 +active_tab_background #001100 +active_tab_foreground #00bb00 +inactive_tab_background #003300 +inactive_tab_foreground #009900 + +# normal +color0 #001100 +color1 #007700 +color2 #00bb00 +color3 #007700 +color4 #009900 +color5 #00bb00 +color6 #005500 +color7 #00bb00 + +# bright +color8 #007700 +color9 #009900 +color10 #003300 +color11 #005500 +color12 #009900 +color13 #00dd00 +color14 #005500 +color15 #00bb00 diff --git a/kitty/colors/base16/base16-gruvbox-dark-hard-256.conf b/kitty/colors/base16/base16-gruvbox-dark-hard-256.conf new file mode 100755 index 0000000..7e02d82 --- /dev/null +++ b/kitty/colors/base16/base16-gruvbox-dark-hard-256.conf @@ -0,0 +1,41 @@ +# Base16 Gruvbox dark, hard - kitty color config +# Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) +background #1d2021 +foreground #d5c4a1 +selection_background #d5c4a1 +selection_foreground #1d2021 +url_color #bdae93 +cursor #d5c4a1 +active_border_color #665c54 +active_tab_background #1d2021 +active_tab_foreground #d5c4a1 +inactive_tab_background #3c3836 +inactive_tab_foreground #bdae93 + +# normal +color0 #1d2021 +color1 #fb4934 +color2 #b8bb26 +color3 #fabd2f +color4 #83a598 +color5 #d3869b +color6 #8ec07c +color7 #d5c4a1 + +# bright +color8 #665c54 +color9 #fb4934 +color10 #b8bb26 +color11 #fabd2f +color12 #83a598 +color13 #d3869b +color14 #8ec07c +color15 #d5c4a1 + +# extended base16 colors +color16 #fe8019 +color17 #d65d0e +color18 #3c3836 +color19 #504945 +color20 #bdae93 +color21 #ebdbb2 diff --git a/kitty/colors/base16/base16-gruvbox-dark-hard.conf b/kitty/colors/base16/base16-gruvbox-dark-hard.conf new file mode 100755 index 0000000..a4a5c99 --- /dev/null +++ b/kitty/colors/base16/base16-gruvbox-dark-hard.conf @@ -0,0 +1,33 @@ +# Base16 Gruvbox dark, hard - kitty color config +# Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) +background #1d2021 +foreground #d5c4a1 +selection_background #d5c4a1 +selection_foreground #1d2021 +url_color #bdae93 +cursor #d5c4a1 +active_border_color #665c54 +active_tab_background #1d2021 +active_tab_foreground #d5c4a1 +inactive_tab_background #3c3836 +inactive_tab_foreground #bdae93 + +# normal +color0 #1d2021 +color1 #fb4934 +color2 #b8bb26 +color3 #fabd2f +color4 #83a598 +color5 #d3869b +color6 #8ec07c +color7 #d5c4a1 + +# bright +color8 #665c54 +color9 #fe8019 +color10 #3c3836 +color11 #504945 +color12 #bdae93 +color13 #ebdbb2 +color14 #d65d0e +color15 #d5c4a1 diff --git a/kitty/colors/base16/base16-gruvbox-dark-medium-256.conf b/kitty/colors/base16/base16-gruvbox-dark-medium-256.conf new file mode 100755 index 0000000..a424cc8 --- /dev/null +++ b/kitty/colors/base16/base16-gruvbox-dark-medium-256.conf @@ -0,0 +1,41 @@ +# Base16 Gruvbox dark, medium - kitty color config +# Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) +background #282828 +foreground #d5c4a1 +selection_background #d5c4a1 +selection_foreground #282828 +url_color #bdae93 +cursor #d5c4a1 +active_border_color #665c54 +active_tab_background #282828 +active_tab_foreground #d5c4a1 +inactive_tab_background #3c3836 +inactive_tab_foreground #bdae93 + +# normal +color0 #282828 +color1 #fb4934 +color2 #b8bb26 +color3 #fabd2f +color4 #83a598 +color5 #d3869b +color6 #8ec07c +color7 #d5c4a1 + +# bright +color8 #665c54 +color9 #fb4934 +color10 #b8bb26 +color11 #fabd2f +color12 #83a598 +color13 #d3869b +color14 #8ec07c +color15 #d5c4a1 + +# extended base16 colors +color16 #fe8019 +color17 #d65d0e +color18 #3c3836 +color19 #504945 +color20 #bdae93 +color21 #ebdbb2 diff --git a/kitty/colors/base16/base16-gruvbox-dark-medium.conf b/kitty/colors/base16/base16-gruvbox-dark-medium.conf new file mode 100755 index 0000000..9ba7b34 --- /dev/null +++ b/kitty/colors/base16/base16-gruvbox-dark-medium.conf @@ -0,0 +1,33 @@ +# Base16 Gruvbox dark, medium - kitty color config +# Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) +background #282828 +foreground #d5c4a1 +selection_background #d5c4a1 +selection_foreground #282828 +url_color #bdae93 +cursor #d5c4a1 +active_border_color #665c54 +active_tab_background #282828 +active_tab_foreground #d5c4a1 +inactive_tab_background #3c3836 +inactive_tab_foreground #bdae93 + +# normal +color0 #282828 +color1 #fb4934 +color2 #b8bb26 +color3 #fabd2f +color4 #83a598 +color5 #d3869b +color6 #8ec07c +color7 #d5c4a1 + +# bright +color8 #665c54 +color9 #fe8019 +color10 #3c3836 +color11 #504945 +color12 #bdae93 +color13 #ebdbb2 +color14 #d65d0e +color15 #d5c4a1 diff --git a/kitty/colors/base16/base16-gruvbox-dark-pale-256.conf b/kitty/colors/base16/base16-gruvbox-dark-pale-256.conf new file mode 100755 index 0000000..4d11804 --- /dev/null +++ b/kitty/colors/base16/base16-gruvbox-dark-pale-256.conf @@ -0,0 +1,41 @@ +# Base16 Gruvbox dark, pale - kitty color config +# Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) +background #262626 +foreground #dab997 +selection_background #dab997 +selection_foreground #262626 +url_color #949494 +cursor #dab997 +active_border_color #8a8a8a +active_tab_background #262626 +active_tab_foreground #dab997 +inactive_tab_background #3a3a3a +inactive_tab_foreground #949494 + +# normal +color0 #262626 +color1 #d75f5f +color2 #afaf00 +color3 #ffaf00 +color4 #83adad +color5 #d485ad +color6 #85ad85 +color7 #dab997 + +# bright +color8 #8a8a8a +color9 #d75f5f +color10 #afaf00 +color11 #ffaf00 +color12 #83adad +color13 #d485ad +color14 #85ad85 +color15 #dab997 + +# extended base16 colors +color16 #ff8700 +color17 #d65d0e +color18 #3a3a3a +color19 #4e4e4e +color20 #949494 +color21 #d5c4a1 diff --git a/kitty/colors/base16/base16-gruvbox-dark-pale.conf b/kitty/colors/base16/base16-gruvbox-dark-pale.conf new file mode 100755 index 0000000..d4ced22 --- /dev/null +++ b/kitty/colors/base16/base16-gruvbox-dark-pale.conf @@ -0,0 +1,33 @@ +# Base16 Gruvbox dark, pale - kitty color config +# Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) +background #262626 +foreground #dab997 +selection_background #dab997 +selection_foreground #262626 +url_color #949494 +cursor #dab997 +active_border_color #8a8a8a +active_tab_background #262626 +active_tab_foreground #dab997 +inactive_tab_background #3a3a3a +inactive_tab_foreground #949494 + +# normal +color0 #262626 +color1 #d75f5f +color2 #afaf00 +color3 #ffaf00 +color4 #83adad +color5 #d485ad +color6 #85ad85 +color7 #dab997 + +# bright +color8 #8a8a8a +color9 #ff8700 +color10 #3a3a3a +color11 #4e4e4e +color12 #949494 +color13 #d5c4a1 +color14 #d65d0e +color15 #dab997 diff --git a/kitty/colors/base16/base16-gruvbox-dark-soft-256.conf b/kitty/colors/base16/base16-gruvbox-dark-soft-256.conf new file mode 100755 index 0000000..33a3f50 --- /dev/null +++ b/kitty/colors/base16/base16-gruvbox-dark-soft-256.conf @@ -0,0 +1,41 @@ +# Base16 Gruvbox dark, soft - kitty color config +# Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) +background #32302f +foreground #d5c4a1 +selection_background #d5c4a1 +selection_foreground #32302f +url_color #bdae93 +cursor #d5c4a1 +active_border_color #665c54 +active_tab_background #32302f +active_tab_foreground #d5c4a1 +inactive_tab_background #3c3836 +inactive_tab_foreground #bdae93 + +# normal +color0 #32302f +color1 #fb4934 +color2 #b8bb26 +color3 #fabd2f +color4 #83a598 +color5 #d3869b +color6 #8ec07c +color7 #d5c4a1 + +# bright +color8 #665c54 +color9 #fb4934 +color10 #b8bb26 +color11 #fabd2f +color12 #83a598 +color13 #d3869b +color14 #8ec07c +color15 #d5c4a1 + +# extended base16 colors +color16 #fe8019 +color17 #d65d0e +color18 #3c3836 +color19 #504945 +color20 #bdae93 +color21 #ebdbb2 diff --git a/kitty/colors/base16/base16-gruvbox-dark-soft.conf b/kitty/colors/base16/base16-gruvbox-dark-soft.conf new file mode 100755 index 0000000..f92310d --- /dev/null +++ b/kitty/colors/base16/base16-gruvbox-dark-soft.conf @@ -0,0 +1,33 @@ +# Base16 Gruvbox dark, soft - kitty color config +# Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) +background #32302f +foreground #d5c4a1 +selection_background #d5c4a1 +selection_foreground #32302f +url_color #bdae93 +cursor #d5c4a1 +active_border_color #665c54 +active_tab_background #32302f +active_tab_foreground #d5c4a1 +inactive_tab_background #3c3836 +inactive_tab_foreground #bdae93 + +# normal +color0 #32302f +color1 #fb4934 +color2 #b8bb26 +color3 #fabd2f +color4 #83a598 +color5 #d3869b +color6 #8ec07c +color7 #d5c4a1 + +# bright +color8 #665c54 +color9 #fe8019 +color10 #3c3836 +color11 #504945 +color12 #bdae93 +color13 #ebdbb2 +color14 #d65d0e +color15 #d5c4a1 diff --git a/kitty/colors/base16/base16-gruvbox-light-hard-256.conf b/kitty/colors/base16/base16-gruvbox-light-hard-256.conf new file mode 100755 index 0000000..ef4104e --- /dev/null +++ b/kitty/colors/base16/base16-gruvbox-light-hard-256.conf @@ -0,0 +1,41 @@ +# Base16 Gruvbox light, hard - kitty color config +# Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) +background #f9f5d7 +foreground #504945 +selection_background #504945 +selection_foreground #f9f5d7 +url_color #665c54 +cursor #504945 +active_border_color #bdae93 +active_tab_background #f9f5d7 +active_tab_foreground #504945 +inactive_tab_background #ebdbb2 +inactive_tab_foreground #665c54 + +# normal +color0 #f9f5d7 +color1 #9d0006 +color2 #79740e +color3 #b57614 +color4 #076678 +color5 #8f3f71 +color6 #427b58 +color7 #504945 + +# bright +color8 #bdae93 +color9 #9d0006 +color10 #79740e +color11 #b57614 +color12 #076678 +color13 #8f3f71 +color14 #427b58 +color15 #504945 + +# extended base16 colors +color16 #af3a03 +color17 #d65d0e +color18 #ebdbb2 +color19 #d5c4a1 +color20 #665c54 +color21 #3c3836 diff --git a/kitty/colors/base16/base16-gruvbox-light-hard.conf b/kitty/colors/base16/base16-gruvbox-light-hard.conf new file mode 100755 index 0000000..4c0b941 --- /dev/null +++ b/kitty/colors/base16/base16-gruvbox-light-hard.conf @@ -0,0 +1,33 @@ +# Base16 Gruvbox light, hard - kitty color config +# Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) +background #f9f5d7 +foreground #504945 +selection_background #504945 +selection_foreground #f9f5d7 +url_color #665c54 +cursor #504945 +active_border_color #bdae93 +active_tab_background #f9f5d7 +active_tab_foreground #504945 +inactive_tab_background #ebdbb2 +inactive_tab_foreground #665c54 + +# normal +color0 #f9f5d7 +color1 #9d0006 +color2 #79740e +color3 #b57614 +color4 #076678 +color5 #8f3f71 +color6 #427b58 +color7 #504945 + +# bright +color8 #bdae93 +color9 #af3a03 +color10 #ebdbb2 +color11 #d5c4a1 +color12 #665c54 +color13 #3c3836 +color14 #d65d0e +color15 #504945 diff --git a/kitty/colors/base16/base16-gruvbox-light-medium-256.conf b/kitty/colors/base16/base16-gruvbox-light-medium-256.conf new file mode 100755 index 0000000..0949c7a --- /dev/null +++ b/kitty/colors/base16/base16-gruvbox-light-medium-256.conf @@ -0,0 +1,41 @@ +# Base16 Gruvbox light, medium - kitty color config +# Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) +background #fbf1c7 +foreground #504945 +selection_background #504945 +selection_foreground #fbf1c7 +url_color #665c54 +cursor #504945 +active_border_color #bdae93 +active_tab_background #fbf1c7 +active_tab_foreground #504945 +inactive_tab_background #ebdbb2 +inactive_tab_foreground #665c54 + +# normal +color0 #fbf1c7 +color1 #9d0006 +color2 #79740e +color3 #b57614 +color4 #076678 +color5 #8f3f71 +color6 #427b58 +color7 #504945 + +# bright +color8 #bdae93 +color9 #9d0006 +color10 #79740e +color11 #b57614 +color12 #076678 +color13 #8f3f71 +color14 #427b58 +color15 #504945 + +# extended base16 colors +color16 #af3a03 +color17 #d65d0e +color18 #ebdbb2 +color19 #d5c4a1 +color20 #665c54 +color21 #3c3836 diff --git a/kitty/colors/base16/base16-gruvbox-light-medium.conf b/kitty/colors/base16/base16-gruvbox-light-medium.conf new file mode 100755 index 0000000..2b95031 --- /dev/null +++ b/kitty/colors/base16/base16-gruvbox-light-medium.conf @@ -0,0 +1,33 @@ +# Base16 Gruvbox light, medium - kitty color config +# Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) +background #fbf1c7 +foreground #504945 +selection_background #504945 +selection_foreground #fbf1c7 +url_color #665c54 +cursor #504945 +active_border_color #bdae93 +active_tab_background #fbf1c7 +active_tab_foreground #504945 +inactive_tab_background #ebdbb2 +inactive_tab_foreground #665c54 + +# normal +color0 #fbf1c7 +color1 #9d0006 +color2 #79740e +color3 #b57614 +color4 #076678 +color5 #8f3f71 +color6 #427b58 +color7 #504945 + +# bright +color8 #bdae93 +color9 #af3a03 +color10 #ebdbb2 +color11 #d5c4a1 +color12 #665c54 +color13 #3c3836 +color14 #d65d0e +color15 #504945 diff --git a/kitty/colors/base16/base16-gruvbox-light-soft-256.conf b/kitty/colors/base16/base16-gruvbox-light-soft-256.conf new file mode 100755 index 0000000..2a635d8 --- /dev/null +++ b/kitty/colors/base16/base16-gruvbox-light-soft-256.conf @@ -0,0 +1,41 @@ +# Base16 Gruvbox light, soft - kitty color config +# Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) +background #f2e5bc +foreground #504945 +selection_background #504945 +selection_foreground #f2e5bc +url_color #665c54 +cursor #504945 +active_border_color #bdae93 +active_tab_background #f2e5bc +active_tab_foreground #504945 +inactive_tab_background #ebdbb2 +inactive_tab_foreground #665c54 + +# normal +color0 #f2e5bc +color1 #9d0006 +color2 #79740e +color3 #b57614 +color4 #076678 +color5 #8f3f71 +color6 #427b58 +color7 #504945 + +# bright +color8 #bdae93 +color9 #9d0006 +color10 #79740e +color11 #b57614 +color12 #076678 +color13 #8f3f71 +color14 #427b58 +color15 #504945 + +# extended base16 colors +color16 #af3a03 +color17 #d65d0e +color18 #ebdbb2 +color19 #d5c4a1 +color20 #665c54 +color21 #3c3836 diff --git a/kitty/colors/base16/base16-gruvbox-light-soft.conf b/kitty/colors/base16/base16-gruvbox-light-soft.conf new file mode 100755 index 0000000..c4f1d5b --- /dev/null +++ b/kitty/colors/base16/base16-gruvbox-light-soft.conf @@ -0,0 +1,33 @@ +# Base16 Gruvbox light, soft - kitty color config +# Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) +background #f2e5bc +foreground #504945 +selection_background #504945 +selection_foreground #f2e5bc +url_color #665c54 +cursor #504945 +active_border_color #bdae93 +active_tab_background #f2e5bc +active_tab_foreground #504945 +inactive_tab_background #ebdbb2 +inactive_tab_foreground #665c54 + +# normal +color0 #f2e5bc +color1 #9d0006 +color2 #79740e +color3 #b57614 +color4 #076678 +color5 #8f3f71 +color6 #427b58 +color7 #504945 + +# bright +color8 #bdae93 +color9 #af3a03 +color10 #ebdbb2 +color11 #d5c4a1 +color12 #665c54 +color13 #3c3836 +color14 #d65d0e +color15 #504945 diff --git a/kitty/colors/base16/base16-harmonic-dark-256.conf b/kitty/colors/base16/base16-harmonic-dark-256.conf new file mode 100755 index 0000000..1e20370 --- /dev/null +++ b/kitty/colors/base16/base16-harmonic-dark-256.conf @@ -0,0 +1,41 @@ +# Base16 Harmonic16 Dark - kitty color config +# Jannik Siebert (https://github.com/janniks) +background #0b1c2c +foreground #cbd6e2 +selection_background #cbd6e2 +selection_foreground #0b1c2c +url_color #aabcce +cursor #cbd6e2 +active_border_color #627e99 +active_tab_background #0b1c2c +active_tab_foreground #cbd6e2 +inactive_tab_background #223b54 +inactive_tab_foreground #aabcce + +# normal +color0 #0b1c2c +color1 #bf8b56 +color2 #56bf8b +color3 #8bbf56 +color4 #8b56bf +color5 #bf568b +color6 #568bbf +color7 #cbd6e2 + +# bright +color8 #627e99 +color9 #bf8b56 +color10 #56bf8b +color11 #8bbf56 +color12 #8b56bf +color13 #bf568b +color14 #568bbf +color15 #cbd6e2 + +# extended base16 colors +color16 #bfbf56 +color17 #bf5656 +color18 #223b54 +color19 #405c79 +color20 #aabcce +color21 #e5ebf1 diff --git a/kitty/colors/base16/base16-harmonic-dark.conf b/kitty/colors/base16/base16-harmonic-dark.conf new file mode 100755 index 0000000..a1d6672 --- /dev/null +++ b/kitty/colors/base16/base16-harmonic-dark.conf @@ -0,0 +1,33 @@ +# Base16 Harmonic16 Dark - kitty color config +# Jannik Siebert (https://github.com/janniks) +background #0b1c2c +foreground #cbd6e2 +selection_background #cbd6e2 +selection_foreground #0b1c2c +url_color #aabcce +cursor #cbd6e2 +active_border_color #627e99 +active_tab_background #0b1c2c +active_tab_foreground #cbd6e2 +inactive_tab_background #223b54 +inactive_tab_foreground #aabcce + +# normal +color0 #0b1c2c +color1 #bf8b56 +color2 #56bf8b +color3 #8bbf56 +color4 #8b56bf +color5 #bf568b +color6 #568bbf +color7 #cbd6e2 + +# bright +color8 #627e99 +color9 #bfbf56 +color10 #223b54 +color11 #405c79 +color12 #aabcce +color13 #e5ebf1 +color14 #bf5656 +color15 #cbd6e2 diff --git a/kitty/colors/base16/base16-harmonic-light-256.conf b/kitty/colors/base16/base16-harmonic-light-256.conf new file mode 100755 index 0000000..a4dac69 --- /dev/null +++ b/kitty/colors/base16/base16-harmonic-light-256.conf @@ -0,0 +1,41 @@ +# Base16 Harmonic16 Light - kitty color config +# Jannik Siebert (https://github.com/janniks) +background #f7f9fb +foreground #405c79 +selection_background #405c79 +selection_foreground #f7f9fb +url_color #627e99 +cursor #405c79 +active_border_color #aabcce +active_tab_background #f7f9fb +active_tab_foreground #405c79 +inactive_tab_background #e5ebf1 +inactive_tab_foreground #627e99 + +# normal +color0 #f7f9fb +color1 #bf8b56 +color2 #56bf8b +color3 #8bbf56 +color4 #8b56bf +color5 #bf568b +color6 #568bbf +color7 #405c79 + +# bright +color8 #aabcce +color9 #bf8b56 +color10 #56bf8b +color11 #8bbf56 +color12 #8b56bf +color13 #bf568b +color14 #568bbf +color15 #405c79 + +# extended base16 colors +color16 #bfbf56 +color17 #bf5656 +color18 #e5ebf1 +color19 #cbd6e2 +color20 #627e99 +color21 #223b54 diff --git a/kitty/colors/base16/base16-harmonic-light.conf b/kitty/colors/base16/base16-harmonic-light.conf new file mode 100755 index 0000000..8ef0daa --- /dev/null +++ b/kitty/colors/base16/base16-harmonic-light.conf @@ -0,0 +1,33 @@ +# Base16 Harmonic16 Light - kitty color config +# Jannik Siebert (https://github.com/janniks) +background #f7f9fb +foreground #405c79 +selection_background #405c79 +selection_foreground #f7f9fb +url_color #627e99 +cursor #405c79 +active_border_color #aabcce +active_tab_background #f7f9fb +active_tab_foreground #405c79 +inactive_tab_background #e5ebf1 +inactive_tab_foreground #627e99 + +# normal +color0 #f7f9fb +color1 #bf8b56 +color2 #56bf8b +color3 #8bbf56 +color4 #8b56bf +color5 #bf568b +color6 #568bbf +color7 #405c79 + +# bright +color8 #aabcce +color9 #bfbf56 +color10 #e5ebf1 +color11 #cbd6e2 +color12 #627e99 +color13 #223b54 +color14 #bf5656 +color15 #405c79 diff --git a/kitty/colors/base16/base16-hopscotch-256.conf b/kitty/colors/base16/base16-hopscotch-256.conf new file mode 100755 index 0000000..e62367d --- /dev/null +++ b/kitty/colors/base16/base16-hopscotch-256.conf @@ -0,0 +1,41 @@ +# Base16 Hopscotch - kitty color config +# Jan T. Sott +background #322931 +foreground #b9b5b8 +selection_background #b9b5b8 +selection_foreground #322931 +url_color #989498 +cursor #b9b5b8 +active_border_color #797379 +active_tab_background #322931 +active_tab_foreground #b9b5b8 +inactive_tab_background #433b42 +inactive_tab_foreground #989498 + +# normal +color0 #322931 +color1 #dd464c +color2 #8fc13e +color3 #fdcc59 +color4 #1290bf +color5 #c85e7c +color6 #149b93 +color7 #b9b5b8 + +# bright +color8 #797379 +color9 #dd464c +color10 #8fc13e +color11 #fdcc59 +color12 #1290bf +color13 #c85e7c +color14 #149b93 +color15 #b9b5b8 + +# extended base16 colors +color16 #fd8b19 +color17 #b33508 +color18 #433b42 +color19 #5c545b +color20 #989498 +color21 #d5d3d5 diff --git a/kitty/colors/base16/base16-hopscotch.conf b/kitty/colors/base16/base16-hopscotch.conf new file mode 100755 index 0000000..9ad2b1b --- /dev/null +++ b/kitty/colors/base16/base16-hopscotch.conf @@ -0,0 +1,33 @@ +# Base16 Hopscotch - kitty color config +# Jan T. Sott +background #322931 +foreground #b9b5b8 +selection_background #b9b5b8 +selection_foreground #322931 +url_color #989498 +cursor #b9b5b8 +active_border_color #797379 +active_tab_background #322931 +active_tab_foreground #b9b5b8 +inactive_tab_background #433b42 +inactive_tab_foreground #989498 + +# normal +color0 #322931 +color1 #dd464c +color2 #8fc13e +color3 #fdcc59 +color4 #1290bf +color5 #c85e7c +color6 #149b93 +color7 #b9b5b8 + +# bright +color8 #797379 +color9 #fd8b19 +color10 #433b42 +color11 #5c545b +color12 #989498 +color13 #d5d3d5 +color14 #b33508 +color15 #b9b5b8 diff --git a/kitty/colors/base16/base16-icy-256.conf b/kitty/colors/base16/base16-icy-256.conf new file mode 100755 index 0000000..b5555de --- /dev/null +++ b/kitty/colors/base16/base16-icy-256.conf @@ -0,0 +1,41 @@ +# Base16 Icy Dark - kitty color config +# icyphox (https://icyphox.ga) +background #021012 +foreground #095b67 +selection_background #095b67 +selection_foreground #021012 +url_color #064048 +cursor #095b67 +active_border_color #052e34 +active_tab_background #021012 +active_tab_foreground #095b67 +inactive_tab_background #031619 +inactive_tab_foreground #064048 + +# normal +color0 #021012 +color1 #16c1d9 +color2 #4dd0e1 +color3 #80deea +color4 #00bcd4 +color5 #00acc1 +color6 #26c6da +color7 #095b67 + +# bright +color8 #052e34 +color9 #16c1d9 +color10 #4dd0e1 +color11 #80deea +color12 #00bcd4 +color13 #00acc1 +color14 #26c6da +color15 #095b67 + +# extended base16 colors +color16 #b3ebf2 +color17 #0097a7 +color18 #031619 +color19 #041f23 +color20 #064048 +color21 #0c7c8c diff --git a/kitty/colors/base16/base16-icy.conf b/kitty/colors/base16/base16-icy.conf new file mode 100755 index 0000000..cac65e4 --- /dev/null +++ b/kitty/colors/base16/base16-icy.conf @@ -0,0 +1,33 @@ +# Base16 Icy Dark - kitty color config +# icyphox (https://icyphox.ga) +background #021012 +foreground #095b67 +selection_background #095b67 +selection_foreground #021012 +url_color #064048 +cursor #095b67 +active_border_color #052e34 +active_tab_background #021012 +active_tab_foreground #095b67 +inactive_tab_background #031619 +inactive_tab_foreground #064048 + +# normal +color0 #021012 +color1 #16c1d9 +color2 #4dd0e1 +color3 #80deea +color4 #00bcd4 +color5 #00acc1 +color6 #26c6da +color7 #095b67 + +# bright +color8 #052e34 +color9 #b3ebf2 +color10 #031619 +color11 #041f23 +color12 #064048 +color13 #0c7c8c +color14 #0097a7 +color15 #095b67 diff --git a/kitty/colors/base16/base16-irblack-256.conf b/kitty/colors/base16/base16-irblack-256.conf new file mode 100755 index 0000000..e8f9fbb --- /dev/null +++ b/kitty/colors/base16/base16-irblack-256.conf @@ -0,0 +1,41 @@ +# Base16 IR Black - kitty color config +# Timothée Poisot (http://timotheepoisot.fr) +background #000000 +foreground #b5b3aa +selection_background #b5b3aa +selection_foreground #000000 +url_color #918f88 +cursor #b5b3aa +active_border_color #6c6c66 +active_tab_background #000000 +active_tab_foreground #b5b3aa +inactive_tab_background #242422 +inactive_tab_foreground #918f88 + +# normal +color0 #000000 +color1 #ff6c60 +color2 #a8ff60 +color3 #ffffb6 +color4 #96cbfe +color5 #ff73fd +color6 #c6c5fe +color7 #b5b3aa + +# bright +color8 #6c6c66 +color9 #ff6c60 +color10 #a8ff60 +color11 #ffffb6 +color12 #96cbfe +color13 #ff73fd +color14 #c6c5fe +color15 #b5b3aa + +# extended base16 colors +color16 #e9c062 +color17 #b18a3d +color18 #242422 +color19 #484844 +color20 #918f88 +color21 #d9d7cc diff --git a/kitty/colors/base16/base16-irblack.conf b/kitty/colors/base16/base16-irblack.conf new file mode 100755 index 0000000..3f1f6e3 --- /dev/null +++ b/kitty/colors/base16/base16-irblack.conf @@ -0,0 +1,33 @@ +# Base16 IR Black - kitty color config +# Timothée Poisot (http://timotheepoisot.fr) +background #000000 +foreground #b5b3aa +selection_background #b5b3aa +selection_foreground #000000 +url_color #918f88 +cursor #b5b3aa +active_border_color #6c6c66 +active_tab_background #000000 +active_tab_foreground #b5b3aa +inactive_tab_background #242422 +inactive_tab_foreground #918f88 + +# normal +color0 #000000 +color1 #ff6c60 +color2 #a8ff60 +color3 #ffffb6 +color4 #96cbfe +color5 #ff73fd +color6 #c6c5fe +color7 #b5b3aa + +# bright +color8 #6c6c66 +color9 #e9c062 +color10 #242422 +color11 #484844 +color12 #918f88 +color13 #d9d7cc +color14 #b18a3d +color15 #b5b3aa diff --git a/kitty/colors/base16/base16-isotope-256.conf b/kitty/colors/base16/base16-isotope-256.conf new file mode 100755 index 0000000..daceda2 --- /dev/null +++ b/kitty/colors/base16/base16-isotope-256.conf @@ -0,0 +1,41 @@ +# Base16 Isotope - kitty color config +# Jan T. Sott +background #000000 +foreground #d0d0d0 +selection_background #d0d0d0 +selection_foreground #000000 +url_color #c0c0c0 +cursor #d0d0d0 +active_border_color #808080 +active_tab_background #000000 +active_tab_foreground #d0d0d0 +inactive_tab_background #404040 +inactive_tab_foreground #c0c0c0 + +# normal +color0 #000000 +color1 #ff0000 +color2 #33ff00 +color3 #ff0099 +color4 #0066ff +color5 #cc00ff +color6 #00ffff +color7 #d0d0d0 + +# bright +color8 #808080 +color9 #ff0000 +color10 #33ff00 +color11 #ff0099 +color12 #0066ff +color13 #cc00ff +color14 #00ffff +color15 #d0d0d0 + +# extended base16 colors +color16 #ff9900 +color17 #3300ff +color18 #404040 +color19 #606060 +color20 #c0c0c0 +color21 #e0e0e0 diff --git a/kitty/colors/base16/base16-isotope.conf b/kitty/colors/base16/base16-isotope.conf new file mode 100755 index 0000000..3d29825 --- /dev/null +++ b/kitty/colors/base16/base16-isotope.conf @@ -0,0 +1,33 @@ +# Base16 Isotope - kitty color config +# Jan T. Sott +background #000000 +foreground #d0d0d0 +selection_background #d0d0d0 +selection_foreground #000000 +url_color #c0c0c0 +cursor #d0d0d0 +active_border_color #808080 +active_tab_background #000000 +active_tab_foreground #d0d0d0 +inactive_tab_background #404040 +inactive_tab_foreground #c0c0c0 + +# normal +color0 #000000 +color1 #ff0000 +color2 #33ff00 +color3 #ff0099 +color4 #0066ff +color5 #cc00ff +color6 #00ffff +color7 #d0d0d0 + +# bright +color8 #808080 +color9 #ff9900 +color10 #404040 +color11 #606060 +color12 #c0c0c0 +color13 #e0e0e0 +color14 #3300ff +color15 #d0d0d0 diff --git a/kitty/colors/base16/base16-macintosh-256.conf b/kitty/colors/base16/base16-macintosh-256.conf new file mode 100755 index 0000000..e7cc59b --- /dev/null +++ b/kitty/colors/base16/base16-macintosh-256.conf @@ -0,0 +1,41 @@ +# Base16 Macintosh - kitty color config +# Rebecca Bettencourt (http://www.kreativekorp.com) +background #000000 +foreground #c0c0c0 +selection_background #c0c0c0 +selection_foreground #000000 +url_color #808080 +cursor #c0c0c0 +active_border_color #808080 +active_tab_background #000000 +active_tab_foreground #c0c0c0 +inactive_tab_background #404040 +inactive_tab_foreground #808080 + +# normal +color0 #000000 +color1 #dd0907 +color2 #1fb714 +color3 #fbf305 +color4 #0000d3 +color5 #4700a5 +color6 #02abea +color7 #c0c0c0 + +# bright +color8 #808080 +color9 #dd0907 +color10 #1fb714 +color11 #fbf305 +color12 #0000d3 +color13 #4700a5 +color14 #02abea +color15 #c0c0c0 + +# extended base16 colors +color16 #ff6403 +color17 #90713a +color18 #404040 +color19 #404040 +color20 #808080 +color21 #c0c0c0 diff --git a/kitty/colors/base16/base16-macintosh.conf b/kitty/colors/base16/base16-macintosh.conf new file mode 100755 index 0000000..d140587 --- /dev/null +++ b/kitty/colors/base16/base16-macintosh.conf @@ -0,0 +1,33 @@ +# Base16 Macintosh - kitty color config +# Rebecca Bettencourt (http://www.kreativekorp.com) +background #000000 +foreground #c0c0c0 +selection_background #c0c0c0 +selection_foreground #000000 +url_color #808080 +cursor #c0c0c0 +active_border_color #808080 +active_tab_background #000000 +active_tab_foreground #c0c0c0 +inactive_tab_background #404040 +inactive_tab_foreground #808080 + +# normal +color0 #000000 +color1 #dd0907 +color2 #1fb714 +color3 #fbf305 +color4 #0000d3 +color5 #4700a5 +color6 #02abea +color7 #c0c0c0 + +# bright +color8 #808080 +color9 #ff6403 +color10 #404040 +color11 #404040 +color12 #808080 +color13 #c0c0c0 +color14 #90713a +color15 #c0c0c0 diff --git a/kitty/colors/base16/base16-marrakesh-256.conf b/kitty/colors/base16/base16-marrakesh-256.conf new file mode 100755 index 0000000..19ebf5c --- /dev/null +++ b/kitty/colors/base16/base16-marrakesh-256.conf @@ -0,0 +1,41 @@ +# Base16 Marrakesh - kitty color config +# Alexandre Gavioli (http://github.com/Alexx2/) +background #201602 +foreground #948e48 +selection_background #948e48 +selection_foreground #201602 +url_color #86813b +cursor #948e48 +active_border_color #6c6823 +active_tab_background #201602 +active_tab_foreground #948e48 +inactive_tab_background #302e00 +inactive_tab_foreground #86813b + +# normal +color0 #201602 +color1 #c35359 +color2 #18974e +color3 #a88339 +color4 #477ca1 +color5 #8868b3 +color6 #75a738 +color7 #948e48 + +# bright +color8 #6c6823 +color9 #c35359 +color10 #18974e +color11 #a88339 +color12 #477ca1 +color13 #8868b3 +color14 #75a738 +color15 #948e48 + +# extended base16 colors +color16 #b36144 +color17 #b3588e +color18 #302e00 +color19 #5f5b17 +color20 #86813b +color21 #ccc37a diff --git a/kitty/colors/base16/base16-marrakesh.conf b/kitty/colors/base16/base16-marrakesh.conf new file mode 100755 index 0000000..f8adca2 --- /dev/null +++ b/kitty/colors/base16/base16-marrakesh.conf @@ -0,0 +1,33 @@ +# Base16 Marrakesh - kitty color config +# Alexandre Gavioli (http://github.com/Alexx2/) +background #201602 +foreground #948e48 +selection_background #948e48 +selection_foreground #201602 +url_color #86813b +cursor #948e48 +active_border_color #6c6823 +active_tab_background #201602 +active_tab_foreground #948e48 +inactive_tab_background #302e00 +inactive_tab_foreground #86813b + +# normal +color0 #201602 +color1 #c35359 +color2 #18974e +color3 #a88339 +color4 #477ca1 +color5 #8868b3 +color6 #75a738 +color7 #948e48 + +# bright +color8 #6c6823 +color9 #b36144 +color10 #302e00 +color11 #5f5b17 +color12 #86813b +color13 #ccc37a +color14 #b3588e +color15 #948e48 diff --git a/kitty/colors/base16/base16-materia-256.conf b/kitty/colors/base16/base16-materia-256.conf new file mode 100755 index 0000000..1f98f34 --- /dev/null +++ b/kitty/colors/base16/base16-materia-256.conf @@ -0,0 +1,41 @@ +# Base16 Materia - kitty color config +# Defman21 +background #263238 +foreground #cdd3de +selection_background #cdd3de +selection_foreground #263238 +url_color #c9ccd3 +cursor #cdd3de +active_border_color #707880 +active_tab_background #263238 +active_tab_foreground #cdd3de +inactive_tab_background #2c393f +inactive_tab_foreground #c9ccd3 + +# normal +color0 #263238 +color1 #ec5f67 +color2 #8bd649 +color3 #ffcc00 +color4 #89ddff +color5 #82aaff +color6 #80cbc4 +color7 #cdd3de + +# bright +color8 #707880 +color9 #ec5f67 +color10 #8bd649 +color11 #ffcc00 +color12 #89ddff +color13 #82aaff +color14 #80cbc4 +color15 #cdd3de + +# extended base16 colors +color16 #ea9560 +color17 #ec5f67 +color18 #2c393f +color19 #37474f +color20 #c9ccd3 +color21 #d5dbe5 diff --git a/kitty/colors/base16/base16-materia.conf b/kitty/colors/base16/base16-materia.conf new file mode 100755 index 0000000..30d1d0d --- /dev/null +++ b/kitty/colors/base16/base16-materia.conf @@ -0,0 +1,33 @@ +# Base16 Materia - kitty color config +# Defman21 +background #263238 +foreground #cdd3de +selection_background #cdd3de +selection_foreground #263238 +url_color #c9ccd3 +cursor #cdd3de +active_border_color #707880 +active_tab_background #263238 +active_tab_foreground #cdd3de +inactive_tab_background #2c393f +inactive_tab_foreground #c9ccd3 + +# normal +color0 #263238 +color1 #ec5f67 +color2 #8bd649 +color3 #ffcc00 +color4 #89ddff +color5 #82aaff +color6 #80cbc4 +color7 #cdd3de + +# bright +color8 #707880 +color9 #ea9560 +color10 #2c393f +color11 #37474f +color12 #c9ccd3 +color13 #d5dbe5 +color14 #ec5f67 +color15 #cdd3de diff --git a/kitty/colors/base16/base16-material-256.conf b/kitty/colors/base16/base16-material-256.conf new file mode 100755 index 0000000..ea333f4 --- /dev/null +++ b/kitty/colors/base16/base16-material-256.conf @@ -0,0 +1,41 @@ +# Base16 Material - kitty color config +# Nate Peterson +background #263238 +foreground #eeffff +selection_background #eeffff +selection_foreground #263238 +url_color #b2ccd6 +cursor #eeffff +active_border_color #546e7a +active_tab_background #263238 +active_tab_foreground #eeffff +inactive_tab_background #2e3c43 +inactive_tab_foreground #b2ccd6 + +# normal +color0 #263238 +color1 #f07178 +color2 #c3e88d +color3 #ffcb6b +color4 #82aaff +color5 #c792ea +color6 #89ddff +color7 #eeffff + +# bright +color8 #546e7a +color9 #f07178 +color10 #c3e88d +color11 #ffcb6b +color12 #82aaff +color13 #c792ea +color14 #89ddff +color15 #eeffff + +# extended base16 colors +color16 #f78c6c +color17 #ff5370 +color18 #2e3c43 +color19 #314549 +color20 #b2ccd6 +color21 #eeffff diff --git a/kitty/colors/base16/base16-material-darker-256.conf b/kitty/colors/base16/base16-material-darker-256.conf new file mode 100755 index 0000000..8bb45af --- /dev/null +++ b/kitty/colors/base16/base16-material-darker-256.conf @@ -0,0 +1,41 @@ +# Base16 Material Darker - kitty color config +# Nate Peterson +background #212121 +foreground #eeffff +selection_background #eeffff +selection_foreground #212121 +url_color #b2ccd6 +cursor #eeffff +active_border_color #4a4a4a +active_tab_background #212121 +active_tab_foreground #eeffff +inactive_tab_background #303030 +inactive_tab_foreground #b2ccd6 + +# normal +color0 #212121 +color1 #f07178 +color2 #c3e88d +color3 #ffcb6b +color4 #82aaff +color5 #c792ea +color6 #89ddff +color7 #eeffff + +# bright +color8 #4a4a4a +color9 #f07178 +color10 #c3e88d +color11 #ffcb6b +color12 #82aaff +color13 #c792ea +color14 #89ddff +color15 #eeffff + +# extended base16 colors +color16 #f78c6c +color17 #ff5370 +color18 #303030 +color19 #353535 +color20 #b2ccd6 +color21 #eeffff diff --git a/kitty/colors/base16/base16-material-darker.conf b/kitty/colors/base16/base16-material-darker.conf new file mode 100755 index 0000000..c004e0b --- /dev/null +++ b/kitty/colors/base16/base16-material-darker.conf @@ -0,0 +1,33 @@ +# Base16 Material Darker - kitty color config +# Nate Peterson +background #212121 +foreground #eeffff +selection_background #eeffff +selection_foreground #212121 +url_color #b2ccd6 +cursor #eeffff +active_border_color #4a4a4a +active_tab_background #212121 +active_tab_foreground #eeffff +inactive_tab_background #303030 +inactive_tab_foreground #b2ccd6 + +# normal +color0 #212121 +color1 #f07178 +color2 #c3e88d +color3 #ffcb6b +color4 #82aaff +color5 #c792ea +color6 #89ddff +color7 #eeffff + +# bright +color8 #4a4a4a +color9 #f78c6c +color10 #303030 +color11 #353535 +color12 #b2ccd6 +color13 #eeffff +color14 #ff5370 +color15 #eeffff diff --git a/kitty/colors/base16/base16-material-lighter-256.conf b/kitty/colors/base16/base16-material-lighter-256.conf new file mode 100755 index 0000000..71ba2aa --- /dev/null +++ b/kitty/colors/base16/base16-material-lighter-256.conf @@ -0,0 +1,41 @@ +# Base16 Material Lighter - kitty color config +# Nate Peterson +background #fafafa +foreground #80cbc4 +selection_background #80cbc4 +selection_foreground #fafafa +url_color #8796b0 +cursor #80cbc4 +active_border_color #ccd7da +active_tab_background #fafafa +active_tab_foreground #80cbc4 +inactive_tab_background #e7eaec +inactive_tab_foreground #8796b0 + +# normal +color0 #fafafa +color1 #ff5370 +color2 #91b859 +color3 #ffb62c +color4 #6182b8 +color5 #7c4dff +color6 #39adb5 +color7 #80cbc4 + +# bright +color8 #ccd7da +color9 #ff5370 +color10 #91b859 +color11 #ffb62c +color12 #6182b8 +color13 #7c4dff +color14 #39adb5 +color15 #80cbc4 + +# extended base16 colors +color16 #f76d47 +color17 #e53935 +color18 #e7eaec +color19 #cceae7 +color20 #8796b0 +color21 #80cbc4 diff --git a/kitty/colors/base16/base16-material-lighter.conf b/kitty/colors/base16/base16-material-lighter.conf new file mode 100755 index 0000000..cf6817b --- /dev/null +++ b/kitty/colors/base16/base16-material-lighter.conf @@ -0,0 +1,33 @@ +# Base16 Material Lighter - kitty color config +# Nate Peterson +background #fafafa +foreground #80cbc4 +selection_background #80cbc4 +selection_foreground #fafafa +url_color #8796b0 +cursor #80cbc4 +active_border_color #ccd7da +active_tab_background #fafafa +active_tab_foreground #80cbc4 +inactive_tab_background #e7eaec +inactive_tab_foreground #8796b0 + +# normal +color0 #fafafa +color1 #ff5370 +color2 #91b859 +color3 #ffb62c +color4 #6182b8 +color5 #7c4dff +color6 #39adb5 +color7 #80cbc4 + +# bright +color8 #ccd7da +color9 #f76d47 +color10 #e7eaec +color11 #cceae7 +color12 #8796b0 +color13 #80cbc4 +color14 #e53935 +color15 #80cbc4 diff --git a/kitty/colors/base16/base16-material-palenight-256.conf b/kitty/colors/base16/base16-material-palenight-256.conf new file mode 100755 index 0000000..e48b118 --- /dev/null +++ b/kitty/colors/base16/base16-material-palenight-256.conf @@ -0,0 +1,41 @@ +# Base16 Material Palenight - kitty color config +# Nate Peterson +background #292d3e +foreground #959dcb +selection_background #959dcb +selection_foreground #292d3e +url_color #8796b0 +cursor #959dcb +active_border_color #676e95 +active_tab_background #292d3e +active_tab_foreground #959dcb +inactive_tab_background #444267 +inactive_tab_foreground #8796b0 + +# normal +color0 #292d3e +color1 #f07178 +color2 #c3e88d +color3 #ffcb6b +color4 #82aaff +color5 #c792ea +color6 #89ddff +color7 #959dcb + +# bright +color8 #676e95 +color9 #f07178 +color10 #c3e88d +color11 #ffcb6b +color12 #82aaff +color13 #c792ea +color14 #89ddff +color15 #959dcb + +# extended base16 colors +color16 #f78c6c +color17 #ff5370 +color18 #444267 +color19 #32374d +color20 #8796b0 +color21 #959dcb diff --git a/kitty/colors/base16/base16-material-palenight.conf b/kitty/colors/base16/base16-material-palenight.conf new file mode 100755 index 0000000..59e36de --- /dev/null +++ b/kitty/colors/base16/base16-material-palenight.conf @@ -0,0 +1,33 @@ +# Base16 Material Palenight - kitty color config +# Nate Peterson +background #292d3e +foreground #959dcb +selection_background #959dcb +selection_foreground #292d3e +url_color #8796b0 +cursor #959dcb +active_border_color #676e95 +active_tab_background #292d3e +active_tab_foreground #959dcb +inactive_tab_background #444267 +inactive_tab_foreground #8796b0 + +# normal +color0 #292d3e +color1 #f07178 +color2 #c3e88d +color3 #ffcb6b +color4 #82aaff +color5 #c792ea +color6 #89ddff +color7 #959dcb + +# bright +color8 #676e95 +color9 #f78c6c +color10 #444267 +color11 #32374d +color12 #8796b0 +color13 #959dcb +color14 #ff5370 +color15 #959dcb diff --git a/kitty/colors/base16/base16-material-vivid-256.conf b/kitty/colors/base16/base16-material-vivid-256.conf new file mode 100755 index 0000000..8275adf --- /dev/null +++ b/kitty/colors/base16/base16-material-vivid-256.conf @@ -0,0 +1,41 @@ +# Base16 Material Vivid - kitty color config +# joshyrobot +background #263238 +foreground #b0bec5 +selection_background #b0bec5 +selection_foreground #263238 +url_color #90a4ae +cursor #b0bec5 +active_border_color #546e7a +active_tab_background #263238 +active_tab_foreground #b0bec5 +inactive_tab_background #37474f +inactive_tab_foreground #90a4ae + +# normal +color0 #263238 +color1 #ff1744 +color2 #00e676 +color3 #ffc400 +color4 #2979ff +color5 #651fff +color6 #00b0ff +color7 #b0bec5 + +# bright +color8 #546e7a +color9 #ff1744 +color10 #00e676 +color11 #ffc400 +color12 #2979ff +color13 #651fff +color14 #00b0ff +color15 #b0bec5 + +# extended base16 colors +color16 #ff9100 +color17 #8d6e63 +color18 #37474f +color19 #455a64 +color20 #90a4ae +color21 #cfd8dc diff --git a/kitty/colors/base16/base16-material-vivid.conf b/kitty/colors/base16/base16-material-vivid.conf new file mode 100755 index 0000000..8ba61ae --- /dev/null +++ b/kitty/colors/base16/base16-material-vivid.conf @@ -0,0 +1,33 @@ +# Base16 Material Vivid - kitty color config +# joshyrobot +background #263238 +foreground #b0bec5 +selection_background #b0bec5 +selection_foreground #263238 +url_color #90a4ae +cursor #b0bec5 +active_border_color #546e7a +active_tab_background #263238 +active_tab_foreground #b0bec5 +inactive_tab_background #37474f +inactive_tab_foreground #90a4ae + +# normal +color0 #263238 +color1 #ff1744 +color2 #00e676 +color3 #ffc400 +color4 #2979ff +color5 #651fff +color6 #00b0ff +color7 #b0bec5 + +# bright +color8 #546e7a +color9 #ff9100 +color10 #37474f +color11 #455a64 +color12 #90a4ae +color13 #cfd8dc +color14 #8d6e63 +color15 #b0bec5 diff --git a/kitty/colors/base16/base16-material.conf b/kitty/colors/base16/base16-material.conf new file mode 100755 index 0000000..9b5a24f --- /dev/null +++ b/kitty/colors/base16/base16-material.conf @@ -0,0 +1,33 @@ +# Base16 Material - kitty color config +# Nate Peterson +background #263238 +foreground #eeffff +selection_background #eeffff +selection_foreground #263238 +url_color #b2ccd6 +cursor #eeffff +active_border_color #546e7a +active_tab_background #263238 +active_tab_foreground #eeffff +inactive_tab_background #2e3c43 +inactive_tab_foreground #b2ccd6 + +# normal +color0 #263238 +color1 #f07178 +color2 #c3e88d +color3 #ffcb6b +color4 #82aaff +color5 #c792ea +color6 #89ddff +color7 #eeffff + +# bright +color8 #546e7a +color9 #f78c6c +color10 #2e3c43 +color11 #314549 +color12 #b2ccd6 +color13 #eeffff +color14 #ff5370 +color15 #eeffff diff --git a/kitty/colors/base16/base16-mellow-purple-256.conf b/kitty/colors/base16/base16-mellow-purple-256.conf new file mode 100755 index 0000000..069b9b0 --- /dev/null +++ b/kitty/colors/base16/base16-mellow-purple-256.conf @@ -0,0 +1,41 @@ +# Base16 Mellow Purple - kitty color config +# gidsi +background #1e0528 +foreground #ffeeff +selection_background #ffeeff +selection_foreground #1e0528 +url_color #873582 +cursor #ffeeff +active_border_color #320f55 +active_tab_background #1e0528 +active_tab_foreground #ffeeff +inactive_tab_background #1a092d +inactive_tab_foreground #873582 + +# normal +color0 #1e0528 +color1 #00d9e9 +color2 #05cb0d +color3 #955ae7 +color4 #550068 +color5 #8991bb +color6 #b900b1 +color7 #ffeeff + +# bright +color8 #320f55 +color9 #00d9e9 +color10 #05cb0d +color11 #955ae7 +color12 #550068 +color13 #8991bb +color14 #b900b1 +color15 #ffeeff + +# extended base16 colors +color16 #aa00a3 +color17 #4d6fff +color18 #1a092d +color19 #331354 +color20 #873582 +color21 #ffeeff diff --git a/kitty/colors/base16/base16-mellow-purple.conf b/kitty/colors/base16/base16-mellow-purple.conf new file mode 100755 index 0000000..5e1d1d1 --- /dev/null +++ b/kitty/colors/base16/base16-mellow-purple.conf @@ -0,0 +1,33 @@ +# Base16 Mellow Purple - kitty color config +# gidsi +background #1e0528 +foreground #ffeeff +selection_background #ffeeff +selection_foreground #1e0528 +url_color #873582 +cursor #ffeeff +active_border_color #320f55 +active_tab_background #1e0528 +active_tab_foreground #ffeeff +inactive_tab_background #1a092d +inactive_tab_foreground #873582 + +# normal +color0 #1e0528 +color1 #00d9e9 +color2 #05cb0d +color3 #955ae7 +color4 #550068 +color5 #8991bb +color6 #b900b1 +color7 #ffeeff + +# bright +color8 #320f55 +color9 #aa00a3 +color10 #1a092d +color11 #331354 +color12 #873582 +color13 #ffeeff +color14 #4d6fff +color15 #ffeeff diff --git a/kitty/colors/base16/base16-mexico-light-256.conf b/kitty/colors/base16/base16-mexico-light-256.conf new file mode 100755 index 0000000..910d488 --- /dev/null +++ b/kitty/colors/base16/base16-mexico-light-256.conf @@ -0,0 +1,41 @@ +# Base16 Mexico Light - kitty color config +# Sheldon Johnson +background #f8f8f8 +foreground #383838 +selection_background #383838 +selection_foreground #f8f8f8 +url_color #585858 +cursor #383838 +active_border_color #b8b8b8 +active_tab_background #f8f8f8 +active_tab_foreground #383838 +inactive_tab_background #e8e8e8 +inactive_tab_foreground #585858 + +# normal +color0 #f8f8f8 +color1 #ab4642 +color2 #538947 +color3 #f79a0e +color4 #7cafc2 +color5 #96609e +color6 #4b8093 +color7 #383838 + +# bright +color8 #b8b8b8 +color9 #ab4642 +color10 #538947 +color11 #f79a0e +color12 #7cafc2 +color13 #96609e +color14 #4b8093 +color15 #383838 + +# extended base16 colors +color16 #dc9656 +color17 #a16946 +color18 #e8e8e8 +color19 #d8d8d8 +color20 #585858 +color21 #282828 diff --git a/kitty/colors/base16/base16-mexico-light.conf b/kitty/colors/base16/base16-mexico-light.conf new file mode 100755 index 0000000..02a9f92 --- /dev/null +++ b/kitty/colors/base16/base16-mexico-light.conf @@ -0,0 +1,33 @@ +# Base16 Mexico Light - kitty color config +# Sheldon Johnson +background #f8f8f8 +foreground #383838 +selection_background #383838 +selection_foreground #f8f8f8 +url_color #585858 +cursor #383838 +active_border_color #b8b8b8 +active_tab_background #f8f8f8 +active_tab_foreground #383838 +inactive_tab_background #e8e8e8 +inactive_tab_foreground #585858 + +# normal +color0 #f8f8f8 +color1 #ab4642 +color2 #538947 +color3 #f79a0e +color4 #7cafc2 +color5 #96609e +color6 #4b8093 +color7 #383838 + +# bright +color8 #b8b8b8 +color9 #dc9656 +color10 #e8e8e8 +color11 #d8d8d8 +color12 #585858 +color13 #282828 +color14 #a16946 +color15 #383838 diff --git a/kitty/colors/base16/base16-mocha-256.conf b/kitty/colors/base16/base16-mocha-256.conf new file mode 100755 index 0000000..a166a9e --- /dev/null +++ b/kitty/colors/base16/base16-mocha-256.conf @@ -0,0 +1,41 @@ +# Base16 Mocha - kitty color config +# Chris Kempson (http://chriskempson.com) +background #3b3228 +foreground #d0c8c6 +selection_background #d0c8c6 +selection_foreground #3b3228 +url_color #b8afad +cursor #d0c8c6 +active_border_color #7e705a +active_tab_background #3b3228 +active_tab_foreground #d0c8c6 +inactive_tab_background #534636 +inactive_tab_foreground #b8afad + +# normal +color0 #3b3228 +color1 #cb6077 +color2 #beb55b +color3 #f4bc87 +color4 #8ab3b5 +color5 #a89bb9 +color6 #7bbda4 +color7 #d0c8c6 + +# bright +color8 #7e705a +color9 #cb6077 +color10 #beb55b +color11 #f4bc87 +color12 #8ab3b5 +color13 #a89bb9 +color14 #7bbda4 +color15 #d0c8c6 + +# extended base16 colors +color16 #d28b71 +color17 #bb9584 +color18 #534636 +color19 #645240 +color20 #b8afad +color21 #e9e1dd diff --git a/kitty/colors/base16/base16-mocha.conf b/kitty/colors/base16/base16-mocha.conf new file mode 100755 index 0000000..9ed2312 --- /dev/null +++ b/kitty/colors/base16/base16-mocha.conf @@ -0,0 +1,33 @@ +# Base16 Mocha - kitty color config +# Chris Kempson (http://chriskempson.com) +background #3b3228 +foreground #d0c8c6 +selection_background #d0c8c6 +selection_foreground #3b3228 +url_color #b8afad +cursor #d0c8c6 +active_border_color #7e705a +active_tab_background #3b3228 +active_tab_foreground #d0c8c6 +inactive_tab_background #534636 +inactive_tab_foreground #b8afad + +# normal +color0 #3b3228 +color1 #cb6077 +color2 #beb55b +color3 #f4bc87 +color4 #8ab3b5 +color5 #a89bb9 +color6 #7bbda4 +color7 #d0c8c6 + +# bright +color8 #7e705a +color9 #d28b71 +color10 #534636 +color11 #645240 +color12 #b8afad +color13 #e9e1dd +color14 #bb9584 +color15 #d0c8c6 diff --git a/kitty/colors/base16/base16-monokai-256.conf b/kitty/colors/base16/base16-monokai-256.conf new file mode 100755 index 0000000..4081b3b --- /dev/null +++ b/kitty/colors/base16/base16-monokai-256.conf @@ -0,0 +1,41 @@ +# Base16 Monokai - kitty color config +# Wimer Hazenberg (http://www.monokai.nl) +background #272822 +foreground #f8f8f2 +selection_background #f8f8f2 +selection_foreground #272822 +url_color #a59f85 +cursor #f8f8f2 +active_border_color #75715e +active_tab_background #272822 +active_tab_foreground #f8f8f2 +inactive_tab_background #383830 +inactive_tab_foreground #a59f85 + +# normal +color0 #272822 +color1 #f92672 +color2 #a6e22e +color3 #f4bf75 +color4 #66d9ef +color5 #ae81ff +color6 #a1efe4 +color7 #f8f8f2 + +# bright +color8 #75715e +color9 #f92672 +color10 #a6e22e +color11 #f4bf75 +color12 #66d9ef +color13 #ae81ff +color14 #a1efe4 +color15 #f8f8f2 + +# extended base16 colors +color16 #fd971f +color17 #cc6633 +color18 #383830 +color19 #49483e +color20 #a59f85 +color21 #f5f4f1 diff --git a/kitty/colors/base16/base16-monokai.conf b/kitty/colors/base16/base16-monokai.conf new file mode 100755 index 0000000..f6f6f04 --- /dev/null +++ b/kitty/colors/base16/base16-monokai.conf @@ -0,0 +1,33 @@ +# Base16 Monokai - kitty color config +# Wimer Hazenberg (http://www.monokai.nl) +background #272822 +foreground #f8f8f2 +selection_background #f8f8f2 +selection_foreground #272822 +url_color #a59f85 +cursor #f8f8f2 +active_border_color #75715e +active_tab_background #272822 +active_tab_foreground #f8f8f2 +inactive_tab_background #383830 +inactive_tab_foreground #a59f85 + +# normal +color0 #272822 +color1 #f92672 +color2 #a6e22e +color3 #f4bf75 +color4 #66d9ef +color5 #ae81ff +color6 #a1efe4 +color7 #f8f8f2 + +# bright +color8 #75715e +color9 #fd971f +color10 #383830 +color11 #49483e +color12 #a59f85 +color13 #f5f4f1 +color14 #cc6633 +color15 #f8f8f2 diff --git a/kitty/colors/base16/base16-nord-256.conf b/kitty/colors/base16/base16-nord-256.conf new file mode 100755 index 0000000..d9e78db --- /dev/null +++ b/kitty/colors/base16/base16-nord-256.conf @@ -0,0 +1,41 @@ +# Base16 Nord - kitty color config +# arcticicestudio +background #2e3440 +foreground #e5e9f0 +selection_background #e5e9f0 +selection_foreground #2e3440 +url_color #d8dee9 +cursor #e5e9f0 +active_border_color #4c566a +active_tab_background #2e3440 +active_tab_foreground #e5e9f0 +inactive_tab_background #3b4252 +inactive_tab_foreground #d8dee9 + +# normal +color0 #2e3440 +color1 #88c0d0 +color2 #bf616a +color3 #5e81ac +color4 #ebcb8b +color5 #a3be8c +color6 #d08770 +color7 #e5e9f0 + +# bright +color8 #4c566a +color9 #88c0d0 +color10 #bf616a +color11 #5e81ac +color12 #ebcb8b +color13 #a3be8c +color14 #d08770 +color15 #e5e9f0 + +# extended base16 colors +color16 #81a1c1 +color17 #b48ead +color18 #3b4252 +color19 #434c5e +color20 #d8dee9 +color21 #eceff4 diff --git a/kitty/colors/base16/base16-nord.conf b/kitty/colors/base16/base16-nord.conf new file mode 100755 index 0000000..0378a72 --- /dev/null +++ b/kitty/colors/base16/base16-nord.conf @@ -0,0 +1,33 @@ +# Base16 Nord - kitty color config +# arcticicestudio +background #2e3440 +foreground #e5e9f0 +selection_background #e5e9f0 +selection_foreground #2e3440 +url_color #d8dee9 +cursor #e5e9f0 +active_border_color #4c566a +active_tab_background #2e3440 +active_tab_foreground #e5e9f0 +inactive_tab_background #3b4252 +inactive_tab_foreground #d8dee9 + +# normal +color0 #2e3440 +color1 #88c0d0 +color2 #bf616a +color3 #5e81ac +color4 #ebcb8b +color5 #a3be8c +color6 #d08770 +color7 #e5e9f0 + +# bright +color8 #4c566a +color9 #81a1c1 +color10 #3b4252 +color11 #434c5e +color12 #d8dee9 +color13 #eceff4 +color14 #b48ead +color15 #e5e9f0 diff --git a/kitty/colors/base16/base16-ocean-256.conf b/kitty/colors/base16/base16-ocean-256.conf new file mode 100755 index 0000000..b0c4e92 --- /dev/null +++ b/kitty/colors/base16/base16-ocean-256.conf @@ -0,0 +1,41 @@ +# Base16 Ocean - kitty color config +# Chris Kempson (http://chriskempson.com) +background #2b303b +foreground #c0c5ce +selection_background #c0c5ce +selection_foreground #2b303b +url_color #a7adba +cursor #c0c5ce +active_border_color #65737e +active_tab_background #2b303b +active_tab_foreground #c0c5ce +inactive_tab_background #343d46 +inactive_tab_foreground #a7adba + +# normal +color0 #2b303b +color1 #bf616a +color2 #a3be8c +color3 #ebcb8b +color4 #8fa1b3 +color5 #b48ead +color6 #96b5b4 +color7 #c0c5ce + +# bright +color8 #65737e +color9 #bf616a +color10 #a3be8c +color11 #ebcb8b +color12 #8fa1b3 +color13 #b48ead +color14 #96b5b4 +color15 #c0c5ce + +# extended base16 colors +color16 #d08770 +color17 #ab7967 +color18 #343d46 +color19 #4f5b66 +color20 #a7adba +color21 #dfe1e8 diff --git a/kitty/colors/base16/base16-ocean.conf b/kitty/colors/base16/base16-ocean.conf new file mode 100755 index 0000000..2df3efa --- /dev/null +++ b/kitty/colors/base16/base16-ocean.conf @@ -0,0 +1,33 @@ +# Base16 Ocean - kitty color config +# Chris Kempson (http://chriskempson.com) +background #2b303b +foreground #c0c5ce +selection_background #c0c5ce +selection_foreground #2b303b +url_color #a7adba +cursor #c0c5ce +active_border_color #65737e +active_tab_background #2b303b +active_tab_foreground #c0c5ce +inactive_tab_background #343d46 +inactive_tab_foreground #a7adba + +# normal +color0 #2b303b +color1 #bf616a +color2 #a3be8c +color3 #ebcb8b +color4 #8fa1b3 +color5 #b48ead +color6 #96b5b4 +color7 #c0c5ce + +# bright +color8 #65737e +color9 #d08770 +color10 #343d46 +color11 #4f5b66 +color12 #a7adba +color13 #dfe1e8 +color14 #ab7967 +color15 #c0c5ce diff --git a/kitty/colors/base16/base16-oceanicnext-256.conf b/kitty/colors/base16/base16-oceanicnext-256.conf new file mode 100755 index 0000000..4704c83 --- /dev/null +++ b/kitty/colors/base16/base16-oceanicnext-256.conf @@ -0,0 +1,41 @@ +# Base16 OceanicNext - kitty color config +# https://github.com/voronianski/oceanic-next-color-scheme +background #1b2b34 +foreground #c0c5ce +selection_background #c0c5ce +selection_foreground #1b2b34 +url_color #a7adba +cursor #c0c5ce +active_border_color #65737e +active_tab_background #1b2b34 +active_tab_foreground #c0c5ce +inactive_tab_background #343d46 +inactive_tab_foreground #a7adba + +# normal +color0 #1b2b34 +color1 #ec5f67 +color2 #99c794 +color3 #fac863 +color4 #6699cc +color5 #c594c5 +color6 #5fb3b3 +color7 #c0c5ce + +# bright +color8 #65737e +color9 #ec5f67 +color10 #99c794 +color11 #fac863 +color12 #6699cc +color13 #c594c5 +color14 #5fb3b3 +color15 #c0c5ce + +# extended base16 colors +color16 #f99157 +color17 #ab7967 +color18 #343d46 +color19 #4f5b66 +color20 #a7adba +color21 #cdd3de diff --git a/kitty/colors/base16/base16-oceanicnext.conf b/kitty/colors/base16/base16-oceanicnext.conf new file mode 100755 index 0000000..5c470a3 --- /dev/null +++ b/kitty/colors/base16/base16-oceanicnext.conf @@ -0,0 +1,33 @@ +# Base16 OceanicNext - kitty color config +# https://github.com/voronianski/oceanic-next-color-scheme +background #1b2b34 +foreground #c0c5ce +selection_background #c0c5ce +selection_foreground #1b2b34 +url_color #a7adba +cursor #c0c5ce +active_border_color #65737e +active_tab_background #1b2b34 +active_tab_foreground #c0c5ce +inactive_tab_background #343d46 +inactive_tab_foreground #a7adba + +# normal +color0 #1b2b34 +color1 #ec5f67 +color2 #99c794 +color3 #fac863 +color4 #6699cc +color5 #c594c5 +color6 #5fb3b3 +color7 #c0c5ce + +# bright +color8 #65737e +color9 #f99157 +color10 #343d46 +color11 #4f5b66 +color12 #a7adba +color13 #cdd3de +color14 #ab7967 +color15 #c0c5ce diff --git a/kitty/colors/base16/base16-one-light-256.conf b/kitty/colors/base16/base16-one-light-256.conf new file mode 100755 index 0000000..79195e2 --- /dev/null +++ b/kitty/colors/base16/base16-one-light-256.conf @@ -0,0 +1,41 @@ +# Base16 One Light - kitty color config +# Daniel Pfeifer (http://github.com/purpleKarrot) +background #fafafa +foreground #383a42 +selection_background #383a42 +selection_foreground #fafafa +url_color #696c77 +cursor #383a42 +active_border_color #a0a1a7 +active_tab_background #fafafa +active_tab_foreground #383a42 +inactive_tab_background #f0f0f1 +inactive_tab_foreground #696c77 + +# normal +color0 #fafafa +color1 #ca1243 +color2 #50a14f +color3 #c18401 +color4 #4078f2 +color5 #a626a4 +color6 #0184bc +color7 #383a42 + +# bright +color8 #a0a1a7 +color9 #ca1243 +color10 #50a14f +color11 #c18401 +color12 #4078f2 +color13 #a626a4 +color14 #0184bc +color15 #383a42 + +# extended base16 colors +color16 #d75f00 +color17 #986801 +color18 #f0f0f1 +color19 #e5e5e6 +color20 #696c77 +color21 #202227 diff --git a/kitty/colors/base16/base16-one-light.conf b/kitty/colors/base16/base16-one-light.conf new file mode 100755 index 0000000..72b477b --- /dev/null +++ b/kitty/colors/base16/base16-one-light.conf @@ -0,0 +1,33 @@ +# Base16 One Light - kitty color config +# Daniel Pfeifer (http://github.com/purpleKarrot) +background #fafafa +foreground #383a42 +selection_background #383a42 +selection_foreground #fafafa +url_color #696c77 +cursor #383a42 +active_border_color #a0a1a7 +active_tab_background #fafafa +active_tab_foreground #383a42 +inactive_tab_background #f0f0f1 +inactive_tab_foreground #696c77 + +# normal +color0 #fafafa +color1 #ca1243 +color2 #50a14f +color3 #c18401 +color4 #4078f2 +color5 #a626a4 +color6 #0184bc +color7 #383a42 + +# bright +color8 #a0a1a7 +color9 #d75f00 +color10 #f0f0f1 +color11 #e5e5e6 +color12 #696c77 +color13 #202227 +color14 #986801 +color15 #383a42 diff --git a/kitty/colors/base16/base16-onedark-256.conf b/kitty/colors/base16/base16-onedark-256.conf new file mode 100755 index 0000000..4c16e6f --- /dev/null +++ b/kitty/colors/base16/base16-onedark-256.conf @@ -0,0 +1,41 @@ +# Base16 OneDark - kitty color config +# Lalit Magant (http://github.com/tilal6991) +background #282c34 +foreground #abb2bf +selection_background #abb2bf +selection_foreground #282c34 +url_color #565c64 +cursor #abb2bf +active_border_color #545862 +active_tab_background #282c34 +active_tab_foreground #abb2bf +inactive_tab_background #353b45 +inactive_tab_foreground #565c64 + +# normal +color0 #282c34 +color1 #e06c75 +color2 #98c379 +color3 #e5c07b +color4 #61afef +color5 #c678dd +color6 #56b6c2 +color7 #abb2bf + +# bright +color8 #545862 +color9 #e06c75 +color10 #98c379 +color11 #e5c07b +color12 #61afef +color13 #c678dd +color14 #56b6c2 +color15 #abb2bf + +# extended base16 colors +color16 #d19a66 +color17 #be5046 +color18 #353b45 +color19 #3e4451 +color20 #565c64 +color21 #b6bdca diff --git a/kitty/colors/base16/base16-onedark.conf b/kitty/colors/base16/base16-onedark.conf new file mode 100755 index 0000000..ac99d5a --- /dev/null +++ b/kitty/colors/base16/base16-onedark.conf @@ -0,0 +1,33 @@ +# Base16 OneDark - kitty color config +# Lalit Magant (http://github.com/tilal6991) +background #282c34 +foreground #abb2bf +selection_background #abb2bf +selection_foreground #282c34 +url_color #565c64 +cursor #abb2bf +active_border_color #545862 +active_tab_background #282c34 +active_tab_foreground #abb2bf +inactive_tab_background #353b45 +inactive_tab_foreground #565c64 + +# normal +color0 #282c34 +color1 #e06c75 +color2 #98c379 +color3 #e5c07b +color4 #61afef +color5 #c678dd +color6 #56b6c2 +color7 #abb2bf + +# bright +color8 #545862 +color9 #d19a66 +color10 #353b45 +color11 #3e4451 +color12 #565c64 +color13 #b6bdca +color14 #be5046 +color15 #abb2bf diff --git a/kitty/colors/base16/base16-outrun-dark-256.conf b/kitty/colors/base16/base16-outrun-dark-256.conf new file mode 100755 index 0000000..42655be --- /dev/null +++ b/kitty/colors/base16/base16-outrun-dark-256.conf @@ -0,0 +1,41 @@ +# Base16 Outrun Dark - kitty color config +# Hugo Delahousse (http://github.com/hugodelahousse/) +background #00002a +foreground #d0d0fa +selection_background #d0d0fa +selection_foreground #00002a +url_color #b0b0da +cursor #d0d0fa +active_border_color #50507a +active_tab_background #00002a +active_tab_foreground #d0d0fa +inactive_tab_background #20204a +inactive_tab_foreground #b0b0da + +# normal +color0 #00002a +color1 #ff4242 +color2 #59f176 +color3 #f3e877 +color4 #66b0ff +color5 #f10596 +color6 #0ef0f0 +color7 #d0d0fa + +# bright +color8 #50507a +color9 #ff4242 +color10 #59f176 +color11 #f3e877 +color12 #66b0ff +color13 #f10596 +color14 #0ef0f0 +color15 #d0d0fa + +# extended base16 colors +color16 #fc8d28 +color17 #f003ef +color18 #20204a +color19 #30305a +color20 #b0b0da +color21 #e0e0ff diff --git a/kitty/colors/base16/base16-outrun-dark.conf b/kitty/colors/base16/base16-outrun-dark.conf new file mode 100755 index 0000000..b36e613 --- /dev/null +++ b/kitty/colors/base16/base16-outrun-dark.conf @@ -0,0 +1,33 @@ +# Base16 Outrun Dark - kitty color config +# Hugo Delahousse (http://github.com/hugodelahousse/) +background #00002a +foreground #d0d0fa +selection_background #d0d0fa +selection_foreground #00002a +url_color #b0b0da +cursor #d0d0fa +active_border_color #50507a +active_tab_background #00002a +active_tab_foreground #d0d0fa +inactive_tab_background #20204a +inactive_tab_foreground #b0b0da + +# normal +color0 #00002a +color1 #ff4242 +color2 #59f176 +color3 #f3e877 +color4 #66b0ff +color5 #f10596 +color6 #0ef0f0 +color7 #d0d0fa + +# bright +color8 #50507a +color9 #fc8d28 +color10 #20204a +color11 #30305a +color12 #b0b0da +color13 #e0e0ff +color14 #f003ef +color15 #d0d0fa diff --git a/kitty/colors/base16/base16-paraiso-256.conf b/kitty/colors/base16/base16-paraiso-256.conf new file mode 100755 index 0000000..301105e --- /dev/null +++ b/kitty/colors/base16/base16-paraiso-256.conf @@ -0,0 +1,41 @@ +# Base16 Paraiso - kitty color config +# Jan T. Sott +background #2f1e2e +foreground #a39e9b +selection_background #a39e9b +selection_foreground #2f1e2e +url_color #8d8687 +cursor #a39e9b +active_border_color #776e71 +active_tab_background #2f1e2e +active_tab_foreground #a39e9b +inactive_tab_background #41323f +inactive_tab_foreground #8d8687 + +# normal +color0 #2f1e2e +color1 #ef6155 +color2 #48b685 +color3 #fec418 +color4 #06b6ef +color5 #815ba4 +color6 #5bc4bf +color7 #a39e9b + +# bright +color8 #776e71 +color9 #ef6155 +color10 #48b685 +color11 #fec418 +color12 #06b6ef +color13 #815ba4 +color14 #5bc4bf +color15 #a39e9b + +# extended base16 colors +color16 #f99b15 +color17 #e96ba8 +color18 #41323f +color19 #4f424c +color20 #8d8687 +color21 #b9b6b0 diff --git a/kitty/colors/base16/base16-paraiso.conf b/kitty/colors/base16/base16-paraiso.conf new file mode 100755 index 0000000..a93999b --- /dev/null +++ b/kitty/colors/base16/base16-paraiso.conf @@ -0,0 +1,33 @@ +# Base16 Paraiso - kitty color config +# Jan T. Sott +background #2f1e2e +foreground #a39e9b +selection_background #a39e9b +selection_foreground #2f1e2e +url_color #8d8687 +cursor #a39e9b +active_border_color #776e71 +active_tab_background #2f1e2e +active_tab_foreground #a39e9b +inactive_tab_background #41323f +inactive_tab_foreground #8d8687 + +# normal +color0 #2f1e2e +color1 #ef6155 +color2 #48b685 +color3 #fec418 +color4 #06b6ef +color5 #815ba4 +color6 #5bc4bf +color7 #a39e9b + +# bright +color8 #776e71 +color9 #f99b15 +color10 #41323f +color11 #4f424c +color12 #8d8687 +color13 #b9b6b0 +color14 #e96ba8 +color15 #a39e9b diff --git a/kitty/colors/base16/base16-phd-256.conf b/kitty/colors/base16/base16-phd-256.conf new file mode 100755 index 0000000..59f9651 --- /dev/null +++ b/kitty/colors/base16/base16-phd-256.conf @@ -0,0 +1,41 @@ +# Base16 PhD - kitty color config +# Hennig Hasemann (http://leetless.de/vim.html) +background #061229 +foreground #b8bbc2 +selection_background #b8bbc2 +selection_foreground #061229 +url_color #9a99a3 +cursor #b8bbc2 +active_border_color #717885 +active_tab_background #061229 +active_tab_foreground #b8bbc2 +inactive_tab_background #2a3448 +inactive_tab_foreground #9a99a3 + +# normal +color0 #061229 +color1 #d07346 +color2 #99bf52 +color3 #fbd461 +color4 #5299bf +color5 #9989cc +color6 #72b9bf +color7 #b8bbc2 + +# bright +color8 #717885 +color9 #d07346 +color10 #99bf52 +color11 #fbd461 +color12 #5299bf +color13 #9989cc +color14 #72b9bf +color15 #b8bbc2 + +# extended base16 colors +color16 #f0a000 +color17 #b08060 +color18 #2a3448 +color19 #4d5666 +color20 #9a99a3 +color21 #dbdde0 diff --git a/kitty/colors/base16/base16-phd.conf b/kitty/colors/base16/base16-phd.conf new file mode 100755 index 0000000..2270df6 --- /dev/null +++ b/kitty/colors/base16/base16-phd.conf @@ -0,0 +1,33 @@ +# Base16 PhD - kitty color config +# Hennig Hasemann (http://leetless.de/vim.html) +background #061229 +foreground #b8bbc2 +selection_background #b8bbc2 +selection_foreground #061229 +url_color #9a99a3 +cursor #b8bbc2 +active_border_color #717885 +active_tab_background #061229 +active_tab_foreground #b8bbc2 +inactive_tab_background #2a3448 +inactive_tab_foreground #9a99a3 + +# normal +color0 #061229 +color1 #d07346 +color2 #99bf52 +color3 #fbd461 +color4 #5299bf +color5 #9989cc +color6 #72b9bf +color7 #b8bbc2 + +# bright +color8 #717885 +color9 #f0a000 +color10 #2a3448 +color11 #4d5666 +color12 #9a99a3 +color13 #dbdde0 +color14 #b08060 +color15 #b8bbc2 diff --git a/kitty/colors/base16/base16-pico-256.conf b/kitty/colors/base16/base16-pico-256.conf new file mode 100755 index 0000000..791eef8 --- /dev/null +++ b/kitty/colors/base16/base16-pico-256.conf @@ -0,0 +1,41 @@ +# Base16 Pico - kitty color config +# PICO-8 (http://www.lexaloffle.com/pico-8.php) +background #000000 +foreground #5f574f +selection_background #5f574f +selection_foreground #000000 +url_color #ab5236 +cursor #5f574f +active_border_color #008751 +active_tab_background #000000 +active_tab_foreground #5f574f +inactive_tab_background #1d2b53 +inactive_tab_foreground #ab5236 + +# normal +color0 #000000 +color1 #ff004d +color2 #00e756 +color3 #fff024 +color4 #83769c +color5 #ff77a8 +color6 #29adff +color7 #5f574f + +# bright +color8 #008751 +color9 #ff004d +color10 #00e756 +color11 #fff024 +color12 #83769c +color13 #ff77a8 +color14 #29adff +color15 #5f574f + +# extended base16 colors +color16 #ffa300 +color17 #ffccaa +color18 #1d2b53 +color19 #7e2553 +color20 #ab5236 +color21 #c2c3c7 diff --git a/kitty/colors/base16/base16-pico.conf b/kitty/colors/base16/base16-pico.conf new file mode 100755 index 0000000..6fbf32f --- /dev/null +++ b/kitty/colors/base16/base16-pico.conf @@ -0,0 +1,33 @@ +# Base16 Pico - kitty color config +# PICO-8 (http://www.lexaloffle.com/pico-8.php) +background #000000 +foreground #5f574f +selection_background #5f574f +selection_foreground #000000 +url_color #ab5236 +cursor #5f574f +active_border_color #008751 +active_tab_background #000000 +active_tab_foreground #5f574f +inactive_tab_background #1d2b53 +inactive_tab_foreground #ab5236 + +# normal +color0 #000000 +color1 #ff004d +color2 #00e756 +color3 #fff024 +color4 #83769c +color5 #ff77a8 +color6 #29adff +color7 #5f574f + +# bright +color8 #008751 +color9 #ffa300 +color10 #1d2b53 +color11 #7e2553 +color12 #ab5236 +color13 #c2c3c7 +color14 #ffccaa +color15 #5f574f diff --git a/kitty/colors/base16/base16-pop-256.conf b/kitty/colors/base16/base16-pop-256.conf new file mode 100755 index 0000000..8c7e851 --- /dev/null +++ b/kitty/colors/base16/base16-pop-256.conf @@ -0,0 +1,41 @@ +# Base16 Pop - kitty color config +# Chris Kempson (http://chriskempson.com) +background #000000 +foreground #d0d0d0 +selection_background #d0d0d0 +selection_foreground #000000 +url_color #b0b0b0 +cursor #d0d0d0 +active_border_color #505050 +active_tab_background #000000 +active_tab_foreground #d0d0d0 +inactive_tab_background #202020 +inactive_tab_foreground #b0b0b0 + +# normal +color0 #000000 +color1 #eb008a +color2 #37b349 +color3 #f8ca12 +color4 #0e5a94 +color5 #b31e8d +color6 #00aabb +color7 #d0d0d0 + +# bright +color8 #505050 +color9 #eb008a +color10 #37b349 +color11 #f8ca12 +color12 #0e5a94 +color13 #b31e8d +color14 #00aabb +color15 #d0d0d0 + +# extended base16 colors +color16 #f29333 +color17 #7a2d00 +color18 #202020 +color19 #303030 +color20 #b0b0b0 +color21 #e0e0e0 diff --git a/kitty/colors/base16/base16-pop.conf b/kitty/colors/base16/base16-pop.conf new file mode 100755 index 0000000..8a94984 --- /dev/null +++ b/kitty/colors/base16/base16-pop.conf @@ -0,0 +1,33 @@ +# Base16 Pop - kitty color config +# Chris Kempson (http://chriskempson.com) +background #000000 +foreground #d0d0d0 +selection_background #d0d0d0 +selection_foreground #000000 +url_color #b0b0b0 +cursor #d0d0d0 +active_border_color #505050 +active_tab_background #000000 +active_tab_foreground #d0d0d0 +inactive_tab_background #202020 +inactive_tab_foreground #b0b0b0 + +# normal +color0 #000000 +color1 #eb008a +color2 #37b349 +color3 #f8ca12 +color4 #0e5a94 +color5 #b31e8d +color6 #00aabb +color7 #d0d0d0 + +# bright +color8 #505050 +color9 #f29333 +color10 #202020 +color11 #303030 +color12 #b0b0b0 +color13 #e0e0e0 +color14 #7a2d00 +color15 #d0d0d0 diff --git a/kitty/colors/base16/base16-porple-256.conf b/kitty/colors/base16/base16-porple-256.conf new file mode 100755 index 0000000..f170603 --- /dev/null +++ b/kitty/colors/base16/base16-porple-256.conf @@ -0,0 +1,41 @@ +# Base16 Porple - kitty color config +# Niek den Breeje (https://github.com/AuditeMarlow) +background #292c36 +foreground #d8d8d8 +selection_background #d8d8d8 +selection_foreground #292c36 +url_color #b8b8b8 +cursor #d8d8d8 +active_border_color #65568a +active_tab_background #292c36 +active_tab_foreground #d8d8d8 +inactive_tab_background #333344 +inactive_tab_foreground #b8b8b8 + +# normal +color0 #292c36 +color1 #f84547 +color2 #95c76f +color3 #efa16b +color4 #8485ce +color5 #b74989 +color6 #64878f +color7 #d8d8d8 + +# bright +color8 #65568a +color9 #f84547 +color10 #95c76f +color11 #efa16b +color12 #8485ce +color13 #b74989 +color14 #64878f +color15 #d8d8d8 + +# extended base16 colors +color16 #d28e5d +color17 #986841 +color18 #333344 +color19 #474160 +color20 #b8b8b8 +color21 #e8e8e8 diff --git a/kitty/colors/base16/base16-porple.conf b/kitty/colors/base16/base16-porple.conf new file mode 100755 index 0000000..787e815 --- /dev/null +++ b/kitty/colors/base16/base16-porple.conf @@ -0,0 +1,33 @@ +# Base16 Porple - kitty color config +# Niek den Breeje (https://github.com/AuditeMarlow) +background #292c36 +foreground #d8d8d8 +selection_background #d8d8d8 +selection_foreground #292c36 +url_color #b8b8b8 +cursor #d8d8d8 +active_border_color #65568a +active_tab_background #292c36 +active_tab_foreground #d8d8d8 +inactive_tab_background #333344 +inactive_tab_foreground #b8b8b8 + +# normal +color0 #292c36 +color1 #f84547 +color2 #95c76f +color3 #efa16b +color4 #8485ce +color5 #b74989 +color6 #64878f +color7 #d8d8d8 + +# bright +color8 #65568a +color9 #d28e5d +color10 #333344 +color11 #474160 +color12 #b8b8b8 +color13 #e8e8e8 +color14 #986841 +color15 #d8d8d8 diff --git a/kitty/colors/base16/base16-railscasts-256.conf b/kitty/colors/base16/base16-railscasts-256.conf new file mode 100755 index 0000000..6eaa157 --- /dev/null +++ b/kitty/colors/base16/base16-railscasts-256.conf @@ -0,0 +1,41 @@ +# Base16 Railscasts - kitty color config +# Ryan Bates (http://railscasts.com) +background #2b2b2b +foreground #e6e1dc +selection_background #e6e1dc +selection_foreground #2b2b2b +url_color #d4cfc9 +cursor #e6e1dc +active_border_color #5a647e +active_tab_background #2b2b2b +active_tab_foreground #e6e1dc +inactive_tab_background #272935 +inactive_tab_foreground #d4cfc9 + +# normal +color0 #2b2b2b +color1 #da4939 +color2 #a5c261 +color3 #ffc66d +color4 #6d9cbe +color5 #b6b3eb +color6 #519f50 +color7 #e6e1dc + +# bright +color8 #5a647e +color9 #da4939 +color10 #a5c261 +color11 #ffc66d +color12 #6d9cbe +color13 #b6b3eb +color14 #519f50 +color15 #e6e1dc + +# extended base16 colors +color16 #cc7833 +color17 #bc9458 +color18 #272935 +color19 #3a4055 +color20 #d4cfc9 +color21 #f4f1ed diff --git a/kitty/colors/base16/base16-railscasts.conf b/kitty/colors/base16/base16-railscasts.conf new file mode 100755 index 0000000..99dedd8 --- /dev/null +++ b/kitty/colors/base16/base16-railscasts.conf @@ -0,0 +1,33 @@ +# Base16 Railscasts - kitty color config +# Ryan Bates (http://railscasts.com) +background #2b2b2b +foreground #e6e1dc +selection_background #e6e1dc +selection_foreground #2b2b2b +url_color #d4cfc9 +cursor #e6e1dc +active_border_color #5a647e +active_tab_background #2b2b2b +active_tab_foreground #e6e1dc +inactive_tab_background #272935 +inactive_tab_foreground #d4cfc9 + +# normal +color0 #2b2b2b +color1 #da4939 +color2 #a5c261 +color3 #ffc66d +color4 #6d9cbe +color5 #b6b3eb +color6 #519f50 +color7 #e6e1dc + +# bright +color8 #5a647e +color9 #cc7833 +color10 #272935 +color11 #3a4055 +color12 #d4cfc9 +color13 #f4f1ed +color14 #bc9458 +color15 #e6e1dc diff --git a/kitty/colors/base16/base16-rebecca-256.conf b/kitty/colors/base16/base16-rebecca-256.conf new file mode 100755 index 0000000..612e9d5 --- /dev/null +++ b/kitty/colors/base16/base16-rebecca-256.conf @@ -0,0 +1,41 @@ +# Base16 Rebecca - kitty color config +# Victor Borja (http://github.com/vic) based on Rebecca Theme (http://github.com/vic/rebecca-theme) +background #292a44 +foreground #f1eff8 +selection_background #f1eff8 +selection_foreground #292a44 +url_color #a0a0c5 +cursor #f1eff8 +active_border_color #666699 +active_tab_background #292a44 +active_tab_foreground #f1eff8 +inactive_tab_background #663399 +inactive_tab_foreground #a0a0c5 + +# normal +color0 #292a44 +color1 #a0a0c5 +color2 #6dfedf +color3 #ae81ff +color4 #2de0a7 +color5 #7aa5ff +color6 #8eaee0 +color7 #f1eff8 + +# bright +color8 #666699 +color9 #a0a0c5 +color10 #6dfedf +color11 #ae81ff +color12 #2de0a7 +color13 #7aa5ff +color14 #8eaee0 +color15 #f1eff8 + +# extended base16 colors +color16 #efe4a1 +color17 #ff79c6 +color18 #663399 +color19 #383a62 +color20 #a0a0c5 +color21 #ccccff diff --git a/kitty/colors/base16/base16-rebecca.conf b/kitty/colors/base16/base16-rebecca.conf new file mode 100755 index 0000000..c69c376 --- /dev/null +++ b/kitty/colors/base16/base16-rebecca.conf @@ -0,0 +1,33 @@ +# Base16 Rebecca - kitty color config +# Victor Borja (http://github.com/vic) based on Rebecca Theme (http://github.com/vic/rebecca-theme) +background #292a44 +foreground #f1eff8 +selection_background #f1eff8 +selection_foreground #292a44 +url_color #a0a0c5 +cursor #f1eff8 +active_border_color #666699 +active_tab_background #292a44 +active_tab_foreground #f1eff8 +inactive_tab_background #663399 +inactive_tab_foreground #a0a0c5 + +# normal +color0 #292a44 +color1 #a0a0c5 +color2 #6dfedf +color3 #ae81ff +color4 #2de0a7 +color5 #7aa5ff +color6 #8eaee0 +color7 #f1eff8 + +# bright +color8 #666699 +color9 #efe4a1 +color10 #663399 +color11 #383a62 +color12 #a0a0c5 +color13 #ccccff +color14 #ff79c6 +color15 #f1eff8 diff --git a/kitty/colors/base16/base16-seti-256.conf b/kitty/colors/base16/base16-seti-256.conf new file mode 100755 index 0000000..2a25841 --- /dev/null +++ b/kitty/colors/base16/base16-seti-256.conf @@ -0,0 +1,41 @@ +# Base16 Seti UI - kitty color config +# +background #151718 +foreground #d6d6d6 +selection_background #d6d6d6 +selection_foreground #151718 +url_color #43a5d5 +cursor #d6d6d6 +active_border_color #41535b +active_tab_background #151718 +active_tab_foreground #d6d6d6 +inactive_tab_background #282a2b +inactive_tab_foreground #43a5d5 + +# normal +color0 #151718 +color1 #cd3f45 +color2 #9fca56 +color3 #e6cd69 +color4 #55b5db +color5 #a074c4 +color6 #55dbbe +color7 #d6d6d6 + +# bright +color8 #41535b +color9 #cd3f45 +color10 #9fca56 +color11 #e6cd69 +color12 #55b5db +color13 #a074c4 +color14 #55dbbe +color15 #d6d6d6 + +# extended base16 colors +color16 #db7b55 +color17 #8a553f +color18 #282a2b +color19 #3b758c +color20 #43a5d5 +color21 #eeeeee diff --git a/kitty/colors/base16/base16-seti.conf b/kitty/colors/base16/base16-seti.conf new file mode 100755 index 0000000..14cd519 --- /dev/null +++ b/kitty/colors/base16/base16-seti.conf @@ -0,0 +1,33 @@ +# Base16 Seti UI - kitty color config +# +background #151718 +foreground #d6d6d6 +selection_background #d6d6d6 +selection_foreground #151718 +url_color #43a5d5 +cursor #d6d6d6 +active_border_color #41535b +active_tab_background #151718 +active_tab_foreground #d6d6d6 +inactive_tab_background #282a2b +inactive_tab_foreground #43a5d5 + +# normal +color0 #151718 +color1 #cd3f45 +color2 #9fca56 +color3 #e6cd69 +color4 #55b5db +color5 #a074c4 +color6 #55dbbe +color7 #d6d6d6 + +# bright +color8 #41535b +color9 #db7b55 +color10 #282a2b +color11 #3b758c +color12 #43a5d5 +color13 #eeeeee +color14 #8a553f +color15 #d6d6d6 diff --git a/kitty/colors/base16/base16-shapeshifter-256.conf b/kitty/colors/base16/base16-shapeshifter-256.conf new file mode 100755 index 0000000..31748b7 --- /dev/null +++ b/kitty/colors/base16/base16-shapeshifter-256.conf @@ -0,0 +1,41 @@ +# Base16 Shapeshifter - kitty color config +# Tyler Benziger (http://tybenz.com) +background #f9f9f9 +foreground #102015 +selection_background #102015 +selection_foreground #f9f9f9 +url_color #343434 +cursor #102015 +active_border_color #555555 +active_tab_background #f9f9f9 +active_tab_foreground #102015 +inactive_tab_background #e0e0e0 +inactive_tab_foreground #343434 + +# normal +color0 #f9f9f9 +color1 #e92f2f +color2 #0ed839 +color3 #dddd13 +color4 #3b48e3 +color5 #f996e2 +color6 #23edda +color7 #102015 + +# bright +color8 #555555 +color9 #e92f2f +color10 #0ed839 +color11 #dddd13 +color12 #3b48e3 +color13 #f996e2 +color14 #23edda +color15 #102015 + +# extended base16 colors +color16 #e09448 +color17 #69542d +color18 #e0e0e0 +color19 #ababab +color20 #343434 +color21 #040404 diff --git a/kitty/colors/base16/base16-shapeshifter.conf b/kitty/colors/base16/base16-shapeshifter.conf new file mode 100755 index 0000000..67a9a6a --- /dev/null +++ b/kitty/colors/base16/base16-shapeshifter.conf @@ -0,0 +1,33 @@ +# Base16 Shapeshifter - kitty color config +# Tyler Benziger (http://tybenz.com) +background #f9f9f9 +foreground #102015 +selection_background #102015 +selection_foreground #f9f9f9 +url_color #343434 +cursor #102015 +active_border_color #555555 +active_tab_background #f9f9f9 +active_tab_foreground #102015 +inactive_tab_background #e0e0e0 +inactive_tab_foreground #343434 + +# normal +color0 #f9f9f9 +color1 #e92f2f +color2 #0ed839 +color3 #dddd13 +color4 #3b48e3 +color5 #f996e2 +color6 #23edda +color7 #102015 + +# bright +color8 #555555 +color9 #e09448 +color10 #e0e0e0 +color11 #ababab +color12 #343434 +color13 #040404 +color14 #69542d +color15 #102015 diff --git a/kitty/colors/base16/base16-snazzy-256.conf b/kitty/colors/base16/base16-snazzy-256.conf new file mode 100755 index 0000000..e1d7e4b --- /dev/null +++ b/kitty/colors/base16/base16-snazzy-256.conf @@ -0,0 +1,41 @@ +# Base16 Snazzy - kitty color config +# Chawye Hsu (https://github.com/h404bi) based on Hyper Snazzy Theme (https://github.com/sindresorhus/hyper-snazzy) +background #1e1f29 +foreground #eff0eb +selection_background #eff0eb +selection_foreground #1e1f29 +url_color #a5a5a9 +cursor #eff0eb +active_border_color #78787e +active_tab_background #1e1f29 +active_tab_foreground #eff0eb +inactive_tab_background #34353e +inactive_tab_foreground #a5a5a9 + +# normal +color0 #1e1f29 +color1 #ff5c57 +color2 #5af78e +color3 #f3f99d +color4 #57c7ff +color5 #ff6ac1 +color6 #9aedfe +color7 #eff0eb + +# bright +color8 #78787e +color9 #ff5c57 +color10 #5af78e +color11 #f3f99d +color12 #57c7ff +color13 #ff6ac1 +color14 #9aedfe +color15 #eff0eb + +# extended base16 colors +color16 #ff9f43 +color17 #b2643c +color18 #34353e +color19 #4a4b53 +color20 #a5a5a9 +color21 #f1f1f0 diff --git a/kitty/colors/base16/base16-snazzy.conf b/kitty/colors/base16/base16-snazzy.conf new file mode 100755 index 0000000..1312b30 --- /dev/null +++ b/kitty/colors/base16/base16-snazzy.conf @@ -0,0 +1,33 @@ +# Base16 Snazzy - kitty color config +# Chawye Hsu (https://github.com/h404bi) based on Hyper Snazzy Theme (https://github.com/sindresorhus/hyper-snazzy) +background #1e1f29 +foreground #eff0eb +selection_background #eff0eb +selection_foreground #1e1f29 +url_color #a5a5a9 +cursor #eff0eb +active_border_color #78787e +active_tab_background #1e1f29 +active_tab_foreground #eff0eb +inactive_tab_background #34353e +inactive_tab_foreground #a5a5a9 + +# normal +color0 #1e1f29 +color1 #ff5c57 +color2 #5af78e +color3 #f3f99d +color4 #57c7ff +color5 #ff6ac1 +color6 #9aedfe +color7 #eff0eb + +# bright +color8 #78787e +color9 #ff9f43 +color10 #34353e +color11 #4a4b53 +color12 #a5a5a9 +color13 #f1f1f0 +color14 #b2643c +color15 #eff0eb diff --git a/kitty/colors/base16/base16-solarflare-256.conf b/kitty/colors/base16/base16-solarflare-256.conf new file mode 100755 index 0000000..f88cc3d --- /dev/null +++ b/kitty/colors/base16/base16-solarflare-256.conf @@ -0,0 +1,41 @@ +# Base16 Solar Flare - kitty color config +# Chuck Harmston (https://chuck.harmston.ch) +background #18262f +foreground #a6afb8 +selection_background #a6afb8 +selection_foreground #18262f +url_color #85939e +cursor #a6afb8 +active_border_color #667581 +active_tab_background #18262f +active_tab_foreground #a6afb8 +inactive_tab_background #222e38 +inactive_tab_foreground #85939e + +# normal +color0 #18262f +color1 #ef5253 +color2 #7cc844 +color3 #e4b51c +color4 #33b5e1 +color5 #a363d5 +color6 #52cbb0 +color7 #a6afb8 + +# bright +color8 #667581 +color9 #ef5253 +color10 #7cc844 +color11 #e4b51c +color12 #33b5e1 +color13 #a363d5 +color14 #52cbb0 +color15 #a6afb8 + +# extended base16 colors +color16 #e66b2b +color17 #d73c9a +color18 #222e38 +color19 #586875 +color20 #85939e +color21 #e8e9ed diff --git a/kitty/colors/base16/base16-solarflare.conf b/kitty/colors/base16/base16-solarflare.conf new file mode 100755 index 0000000..e1df518 --- /dev/null +++ b/kitty/colors/base16/base16-solarflare.conf @@ -0,0 +1,33 @@ +# Base16 Solar Flare - kitty color config +# Chuck Harmston (https://chuck.harmston.ch) +background #18262f +foreground #a6afb8 +selection_background #a6afb8 +selection_foreground #18262f +url_color #85939e +cursor #a6afb8 +active_border_color #667581 +active_tab_background #18262f +active_tab_foreground #a6afb8 +inactive_tab_background #222e38 +inactive_tab_foreground #85939e + +# normal +color0 #18262f +color1 #ef5253 +color2 #7cc844 +color3 #e4b51c +color4 #33b5e1 +color5 #a363d5 +color6 #52cbb0 +color7 #a6afb8 + +# bright +color8 #667581 +color9 #e66b2b +color10 #222e38 +color11 #586875 +color12 #85939e +color13 #e8e9ed +color14 #d73c9a +color15 #a6afb8 diff --git a/kitty/colors/base16/base16-solarized-dark-256.conf b/kitty/colors/base16/base16-solarized-dark-256.conf new file mode 100755 index 0000000..7aa2d01 --- /dev/null +++ b/kitty/colors/base16/base16-solarized-dark-256.conf @@ -0,0 +1,41 @@ +# Base16 Solarized Dark - kitty color config +# Ethan Schoonover (modified by aramisgithub) +background #002b36 +foreground #93a1a1 +selection_background #93a1a1 +selection_foreground #002b36 +url_color #839496 +cursor #93a1a1 +active_border_color #657b83 +active_tab_background #002b36 +active_tab_foreground #93a1a1 +inactive_tab_background #073642 +inactive_tab_foreground #839496 + +# normal +color0 #002b36 +color1 #dc322f +color2 #859900 +color3 #b58900 +color4 #268bd2 +color5 #6c71c4 +color6 #2aa198 +color7 #93a1a1 + +# bright +color8 #657b83 +color9 #dc322f +color10 #859900 +color11 #b58900 +color12 #268bd2 +color13 #6c71c4 +color14 #2aa198 +color15 #93a1a1 + +# extended base16 colors +color16 #cb4b16 +color17 #d33682 +color18 #073642 +color19 #586e75 +color20 #839496 +color21 #eee8d5 diff --git a/kitty/colors/base16/base16-solarized-dark.conf b/kitty/colors/base16/base16-solarized-dark.conf new file mode 100755 index 0000000..255009d --- /dev/null +++ b/kitty/colors/base16/base16-solarized-dark.conf @@ -0,0 +1,33 @@ +# Base16 Solarized Dark - kitty color config +# Ethan Schoonover (modified by aramisgithub) +background #002b36 +foreground #93a1a1 +selection_background #93a1a1 +selection_foreground #002b36 +url_color #839496 +cursor #93a1a1 +active_border_color #657b83 +active_tab_background #002b36 +active_tab_foreground #93a1a1 +inactive_tab_background #073642 +inactive_tab_foreground #839496 + +# normal +color0 #002b36 +color1 #dc322f +color2 #859900 +color3 #b58900 +color4 #268bd2 +color5 #6c71c4 +color6 #2aa198 +color7 #93a1a1 + +# bright +color8 #657b83 +color9 #cb4b16 +color10 #073642 +color11 #586e75 +color12 #839496 +color13 #eee8d5 +color14 #d33682 +color15 #93a1a1 diff --git a/kitty/colors/base16/base16-solarized-light-256.conf b/kitty/colors/base16/base16-solarized-light-256.conf new file mode 100755 index 0000000..e401bd0 --- /dev/null +++ b/kitty/colors/base16/base16-solarized-light-256.conf @@ -0,0 +1,41 @@ +# Base16 Solarized Light - kitty color config +# Ethan Schoonover (modified by aramisgithub) +background #fdf6e3 +foreground #586e75 +selection_background #586e75 +selection_foreground #fdf6e3 +url_color #657b83 +cursor #586e75 +active_border_color #839496 +active_tab_background #fdf6e3 +active_tab_foreground #586e75 +inactive_tab_background #eee8d5 +inactive_tab_foreground #657b83 + +# normal +color0 #fdf6e3 +color1 #dc322f +color2 #859900 +color3 #b58900 +color4 #268bd2 +color5 #6c71c4 +color6 #2aa198 +color7 #586e75 + +# bright +color8 #839496 +color9 #dc322f +color10 #859900 +color11 #b58900 +color12 #268bd2 +color13 #6c71c4 +color14 #2aa198 +color15 #586e75 + +# extended base16 colors +color16 #cb4b16 +color17 #d33682 +color18 #eee8d5 +color19 #93a1a1 +color20 #657b83 +color21 #073642 diff --git a/kitty/colors/base16/base16-solarized-light.conf b/kitty/colors/base16/base16-solarized-light.conf new file mode 100755 index 0000000..1cbb6a6 --- /dev/null +++ b/kitty/colors/base16/base16-solarized-light.conf @@ -0,0 +1,33 @@ +# Base16 Solarized Light - kitty color config +# Ethan Schoonover (modified by aramisgithub) +background #fdf6e3 +foreground #586e75 +selection_background #586e75 +selection_foreground #fdf6e3 +url_color #657b83 +cursor #586e75 +active_border_color #839496 +active_tab_background #fdf6e3 +active_tab_foreground #586e75 +inactive_tab_background #eee8d5 +inactive_tab_foreground #657b83 + +# normal +color0 #fdf6e3 +color1 #dc322f +color2 #859900 +color3 #b58900 +color4 #268bd2 +color5 #6c71c4 +color6 #2aa198 +color7 #586e75 + +# bright +color8 #839496 +color9 #cb4b16 +color10 #eee8d5 +color11 #93a1a1 +color12 #657b83 +color13 #073642 +color14 #d33682 +color15 #586e75 diff --git a/kitty/colors/base16/base16-spacemacs-256.conf b/kitty/colors/base16/base16-spacemacs-256.conf new file mode 100755 index 0000000..7635327 --- /dev/null +++ b/kitty/colors/base16/base16-spacemacs-256.conf @@ -0,0 +1,41 @@ +# Base16 Spacemacs - kitty color config +# Nasser Alshammari (https://github.com/nashamri/spacemacs-theme) +background #1f2022 +foreground #a3a3a3 +selection_background #a3a3a3 +selection_foreground #1f2022 +url_color #b8b8b8 +cursor #a3a3a3 +active_border_color #585858 +active_tab_background #1f2022 +active_tab_foreground #a3a3a3 +inactive_tab_background #282828 +inactive_tab_foreground #b8b8b8 + +# normal +color0 #1f2022 +color1 #f2241f +color2 #67b11d +color3 #b1951d +color4 #4f97d7 +color5 #a31db1 +color6 #2d9574 +color7 #a3a3a3 + +# bright +color8 #585858 +color9 #f2241f +color10 #67b11d +color11 #b1951d +color12 #4f97d7 +color13 #a31db1 +color14 #2d9574 +color15 #a3a3a3 + +# extended base16 colors +color16 #ffa500 +color17 #b03060 +color18 #282828 +color19 #444155 +color20 #b8b8b8 +color21 #e8e8e8 diff --git a/kitty/colors/base16/base16-spacemacs.conf b/kitty/colors/base16/base16-spacemacs.conf new file mode 100755 index 0000000..f8d2eed --- /dev/null +++ b/kitty/colors/base16/base16-spacemacs.conf @@ -0,0 +1,33 @@ +# Base16 Spacemacs - kitty color config +# Nasser Alshammari (https://github.com/nashamri/spacemacs-theme) +background #1f2022 +foreground #a3a3a3 +selection_background #a3a3a3 +selection_foreground #1f2022 +url_color #b8b8b8 +cursor #a3a3a3 +active_border_color #585858 +active_tab_background #1f2022 +active_tab_foreground #a3a3a3 +inactive_tab_background #282828 +inactive_tab_foreground #b8b8b8 + +# normal +color0 #1f2022 +color1 #f2241f +color2 #67b11d +color3 #b1951d +color4 #4f97d7 +color5 #a31db1 +color6 #2d9574 +color7 #a3a3a3 + +# bright +color8 #585858 +color9 #ffa500 +color10 #282828 +color11 #444155 +color12 #b8b8b8 +color13 #e8e8e8 +color14 #b03060 +color15 #a3a3a3 diff --git a/kitty/colors/base16/base16-summerfruit-dark-256.conf b/kitty/colors/base16/base16-summerfruit-dark-256.conf new file mode 100755 index 0000000..ecbf465 --- /dev/null +++ b/kitty/colors/base16/base16-summerfruit-dark-256.conf @@ -0,0 +1,41 @@ +# Base16 Summerfruit Dark - kitty color config +# Christopher Corley (http://christop.club/) +background #151515 +foreground #d0d0d0 +selection_background #d0d0d0 +selection_foreground #151515 +url_color #b0b0b0 +cursor #d0d0d0 +active_border_color #505050 +active_tab_background #151515 +active_tab_foreground #d0d0d0 +inactive_tab_background #202020 +inactive_tab_foreground #b0b0b0 + +# normal +color0 #151515 +color1 #ff0086 +color2 #00c918 +color3 #aba800 +color4 #3777e6 +color5 #ad00a1 +color6 #1faaaa +color7 #d0d0d0 + +# bright +color8 #505050 +color9 #ff0086 +color10 #00c918 +color11 #aba800 +color12 #3777e6 +color13 #ad00a1 +color14 #1faaaa +color15 #d0d0d0 + +# extended base16 colors +color16 #fd8900 +color17 #cc6633 +color18 #202020 +color19 #303030 +color20 #b0b0b0 +color21 #e0e0e0 diff --git a/kitty/colors/base16/base16-summerfruit-dark.conf b/kitty/colors/base16/base16-summerfruit-dark.conf new file mode 100755 index 0000000..39854e2 --- /dev/null +++ b/kitty/colors/base16/base16-summerfruit-dark.conf @@ -0,0 +1,33 @@ +# Base16 Summerfruit Dark - kitty color config +# Christopher Corley (http://christop.club/) +background #151515 +foreground #d0d0d0 +selection_background #d0d0d0 +selection_foreground #151515 +url_color #b0b0b0 +cursor #d0d0d0 +active_border_color #505050 +active_tab_background #151515 +active_tab_foreground #d0d0d0 +inactive_tab_background #202020 +inactive_tab_foreground #b0b0b0 + +# normal +color0 #151515 +color1 #ff0086 +color2 #00c918 +color3 #aba800 +color4 #3777e6 +color5 #ad00a1 +color6 #1faaaa +color7 #d0d0d0 + +# bright +color8 #505050 +color9 #fd8900 +color10 #202020 +color11 #303030 +color12 #b0b0b0 +color13 #e0e0e0 +color14 #cc6633 +color15 #d0d0d0 diff --git a/kitty/colors/base16/base16-summerfruit-light-256.conf b/kitty/colors/base16/base16-summerfruit-light-256.conf new file mode 100755 index 0000000..b10d5b6 --- /dev/null +++ b/kitty/colors/base16/base16-summerfruit-light-256.conf @@ -0,0 +1,41 @@ +# Base16 Summerfruit Light - kitty color config +# Christopher Corley (http://christop.club/) +background #ffffff +foreground #101010 +selection_background #101010 +selection_foreground #ffffff +url_color #000000 +cursor #101010 +active_border_color #b0b0b0 +active_tab_background #ffffff +active_tab_foreground #101010 +inactive_tab_background #e0e0e0 +inactive_tab_foreground #000000 + +# normal +color0 #ffffff +color1 #ff0086 +color2 #00c918 +color3 #aba800 +color4 #3777e6 +color5 #ad00a1 +color6 #1faaaa +color7 #101010 + +# bright +color8 #b0b0b0 +color9 #ff0086 +color10 #00c918 +color11 #aba800 +color12 #3777e6 +color13 #ad00a1 +color14 #1faaaa +color15 #101010 + +# extended base16 colors +color16 #fd8900 +color17 #cc6633 +color18 #e0e0e0 +color19 #d0d0d0 +color20 #000000 +color21 #151515 diff --git a/kitty/colors/base16/base16-summerfruit-light.conf b/kitty/colors/base16/base16-summerfruit-light.conf new file mode 100755 index 0000000..c9ef174 --- /dev/null +++ b/kitty/colors/base16/base16-summerfruit-light.conf @@ -0,0 +1,33 @@ +# Base16 Summerfruit Light - kitty color config +# Christopher Corley (http://christop.club/) +background #ffffff +foreground #101010 +selection_background #101010 +selection_foreground #ffffff +url_color #000000 +cursor #101010 +active_border_color #b0b0b0 +active_tab_background #ffffff +active_tab_foreground #101010 +inactive_tab_background #e0e0e0 +inactive_tab_foreground #000000 + +# normal +color0 #ffffff +color1 #ff0086 +color2 #00c918 +color3 #aba800 +color4 #3777e6 +color5 #ad00a1 +color6 #1faaaa +color7 #101010 + +# bright +color8 #b0b0b0 +color9 #fd8900 +color10 #e0e0e0 +color11 #d0d0d0 +color12 #000000 +color13 #151515 +color14 #cc6633 +color15 #101010 diff --git a/kitty/colors/base16/base16-tomorrow-256.conf b/kitty/colors/base16/base16-tomorrow-256.conf new file mode 100755 index 0000000..221f0b0 --- /dev/null +++ b/kitty/colors/base16/base16-tomorrow-256.conf @@ -0,0 +1,41 @@ +# Base16 Tomorrow - kitty color config +# Chris Kempson (http://chriskempson.com) +background #ffffff +foreground #4d4d4c +selection_background #4d4d4c +selection_foreground #ffffff +url_color #969896 +cursor #4d4d4c +active_border_color #8e908c +active_tab_background #ffffff +active_tab_foreground #4d4d4c +inactive_tab_background #e0e0e0 +inactive_tab_foreground #969896 + +# normal +color0 #ffffff +color1 #c82829 +color2 #718c00 +color3 #eab700 +color4 #4271ae +color5 #8959a8 +color6 #3e999f +color7 #4d4d4c + +# bright +color8 #8e908c +color9 #c82829 +color10 #718c00 +color11 #eab700 +color12 #4271ae +color13 #8959a8 +color14 #3e999f +color15 #4d4d4c + +# extended base16 colors +color16 #f5871f +color17 #a3685a +color18 #e0e0e0 +color19 #d6d6d6 +color20 #969896 +color21 #282a2e diff --git a/kitty/colors/base16/base16-tomorrow-night-256.conf b/kitty/colors/base16/base16-tomorrow-night-256.conf new file mode 100755 index 0000000..00b5afa --- /dev/null +++ b/kitty/colors/base16/base16-tomorrow-night-256.conf @@ -0,0 +1,41 @@ +# Base16 Tomorrow Night - kitty color config +# Chris Kempson (http://chriskempson.com) +background #1d1f21 +foreground #c5c8c6 +selection_background #c5c8c6 +selection_foreground #1d1f21 +url_color #b4b7b4 +cursor #c5c8c6 +active_border_color #969896 +active_tab_background #1d1f21 +active_tab_foreground #c5c8c6 +inactive_tab_background #282a2e +inactive_tab_foreground #b4b7b4 + +# normal +color0 #1d1f21 +color1 #cc6666 +color2 #b5bd68 +color3 #f0c674 +color4 #81a2be +color5 #b294bb +color6 #8abeb7 +color7 #c5c8c6 + +# bright +color8 #969896 +color9 #cc6666 +color10 #b5bd68 +color11 #f0c674 +color12 #81a2be +color13 #b294bb +color14 #8abeb7 +color15 #c5c8c6 + +# extended base16 colors +color16 #de935f +color17 #a3685a +color18 #282a2e +color19 #373b41 +color20 #b4b7b4 +color21 #e0e0e0 diff --git a/kitty/colors/base16/base16-tomorrow-night.conf b/kitty/colors/base16/base16-tomorrow-night.conf new file mode 100755 index 0000000..445c16b --- /dev/null +++ b/kitty/colors/base16/base16-tomorrow-night.conf @@ -0,0 +1,33 @@ +# Base16 Tomorrow Night - kitty color config +# Chris Kempson (http://chriskempson.com) +background #1d1f21 +foreground #c5c8c6 +selection_background #c5c8c6 +selection_foreground #1d1f21 +url_color #b4b7b4 +cursor #c5c8c6 +active_border_color #969896 +active_tab_background #1d1f21 +active_tab_foreground #c5c8c6 +inactive_tab_background #282a2e +inactive_tab_foreground #b4b7b4 + +# normal +color0 #1d1f21 +color1 #cc6666 +color2 #b5bd68 +color3 #f0c674 +color4 #81a2be +color5 #b294bb +color6 #8abeb7 +color7 #c5c8c6 + +# bright +color8 #969896 +color9 #de935f +color10 #282a2e +color11 #373b41 +color12 #b4b7b4 +color13 #e0e0e0 +color14 #a3685a +color15 #c5c8c6 diff --git a/kitty/colors/base16/base16-tomorrow.conf b/kitty/colors/base16/base16-tomorrow.conf new file mode 100755 index 0000000..a5d7167 --- /dev/null +++ b/kitty/colors/base16/base16-tomorrow.conf @@ -0,0 +1,33 @@ +# Base16 Tomorrow - kitty color config +# Chris Kempson (http://chriskempson.com) +background #ffffff +foreground #4d4d4c +selection_background #4d4d4c +selection_foreground #ffffff +url_color #969896 +cursor #4d4d4c +active_border_color #8e908c +active_tab_background #ffffff +active_tab_foreground #4d4d4c +inactive_tab_background #e0e0e0 +inactive_tab_foreground #969896 + +# normal +color0 #ffffff +color1 #c82829 +color2 #718c00 +color3 #eab700 +color4 #4271ae +color5 #8959a8 +color6 #3e999f +color7 #4d4d4c + +# bright +color8 #8e908c +color9 #f5871f +color10 #e0e0e0 +color11 #d6d6d6 +color12 #969896 +color13 #282a2e +color14 #a3685a +color15 #4d4d4c diff --git a/kitty/colors/base16/base16-tube-256.conf b/kitty/colors/base16/base16-tube-256.conf new file mode 100755 index 0000000..a1b6f46 --- /dev/null +++ b/kitty/colors/base16/base16-tube-256.conf @@ -0,0 +1,41 @@ +# Base16 London Tube - kitty color config +# Jan T. Sott +background #231f20 +foreground #d9d8d8 +selection_background #d9d8d8 +selection_foreground #231f20 +url_color #959ca1 +cursor #d9d8d8 +active_border_color #737171 +active_tab_background #231f20 +active_tab_foreground #d9d8d8 +inactive_tab_background #1c3f95 +inactive_tab_foreground #959ca1 + +# normal +color0 #231f20 +color1 #ee2e24 +color2 #00853e +color3 #ffd204 +color4 #009ddc +color5 #98005d +color6 #85cebc +color7 #d9d8d8 + +# bright +color8 #737171 +color9 #ee2e24 +color10 #00853e +color11 #ffd204 +color12 #009ddc +color13 #98005d +color14 #85cebc +color15 #d9d8d8 + +# extended base16 colors +color16 #f386a1 +color17 #b06110 +color18 #1c3f95 +color19 #5a5758 +color20 #959ca1 +color21 #e7e7e8 diff --git a/kitty/colors/base16/base16-tube.conf b/kitty/colors/base16/base16-tube.conf new file mode 100755 index 0000000..c01b88d --- /dev/null +++ b/kitty/colors/base16/base16-tube.conf @@ -0,0 +1,33 @@ +# Base16 London Tube - kitty color config +# Jan T. Sott +background #231f20 +foreground #d9d8d8 +selection_background #d9d8d8 +selection_foreground #231f20 +url_color #959ca1 +cursor #d9d8d8 +active_border_color #737171 +active_tab_background #231f20 +active_tab_foreground #d9d8d8 +inactive_tab_background #1c3f95 +inactive_tab_foreground #959ca1 + +# normal +color0 #231f20 +color1 #ee2e24 +color2 #00853e +color3 #ffd204 +color4 #009ddc +color5 #98005d +color6 #85cebc +color7 #d9d8d8 + +# bright +color8 #737171 +color9 #f386a1 +color10 #1c3f95 +color11 #5a5758 +color12 #959ca1 +color13 #e7e7e8 +color14 #b06110 +color15 #d9d8d8 diff --git a/kitty/colors/base16/base16-twilight-256.conf b/kitty/colors/base16/base16-twilight-256.conf new file mode 100755 index 0000000..adce1dd --- /dev/null +++ b/kitty/colors/base16/base16-twilight-256.conf @@ -0,0 +1,41 @@ +# Base16 Twilight - kitty color config +# David Hart (https://github.com/hartbit) +background #1e1e1e +foreground #a7a7a7 +selection_background #a7a7a7 +selection_foreground #1e1e1e +url_color #838184 +cursor #a7a7a7 +active_border_color #5f5a60 +active_tab_background #1e1e1e +active_tab_foreground #a7a7a7 +inactive_tab_background #323537 +inactive_tab_foreground #838184 + +# normal +color0 #1e1e1e +color1 #cf6a4c +color2 #8f9d6a +color3 #f9ee98 +color4 #7587a6 +color5 #9b859d +color6 #afc4db +color7 #a7a7a7 + +# bright +color8 #5f5a60 +color9 #cf6a4c +color10 #8f9d6a +color11 #f9ee98 +color12 #7587a6 +color13 #9b859d +color14 #afc4db +color15 #a7a7a7 + +# extended base16 colors +color16 #cda869 +color17 #9b703f +color18 #323537 +color19 #464b50 +color20 #838184 +color21 #c3c3c3 diff --git a/kitty/colors/base16/base16-twilight.conf b/kitty/colors/base16/base16-twilight.conf new file mode 100755 index 0000000..5be74e1 --- /dev/null +++ b/kitty/colors/base16/base16-twilight.conf @@ -0,0 +1,33 @@ +# Base16 Twilight - kitty color config +# David Hart (https://github.com/hartbit) +background #1e1e1e +foreground #a7a7a7 +selection_background #a7a7a7 +selection_foreground #1e1e1e +url_color #838184 +cursor #a7a7a7 +active_border_color #5f5a60 +active_tab_background #1e1e1e +active_tab_foreground #a7a7a7 +inactive_tab_background #323537 +inactive_tab_foreground #838184 + +# normal +color0 #1e1e1e +color1 #cf6a4c +color2 #8f9d6a +color3 #f9ee98 +color4 #7587a6 +color5 #9b859d +color6 #afc4db +color7 #a7a7a7 + +# bright +color8 #5f5a60 +color9 #cda869 +color10 #323537 +color11 #464b50 +color12 #838184 +color13 #c3c3c3 +color14 #9b703f +color15 #a7a7a7 diff --git a/kitty/colors/base16/base16-unikitty-dark-256.conf b/kitty/colors/base16/base16-unikitty-dark-256.conf new file mode 100755 index 0000000..a5a0830 --- /dev/null +++ b/kitty/colors/base16/base16-unikitty-dark-256.conf @@ -0,0 +1,41 @@ +# Base16 Unikitty Dark - kitty color config +# Josh W Lewis (@joshwlewis) +background #2e2a31 +foreground #bcbabe +selection_background #bcbabe +selection_foreground #2e2a31 +url_color #9f9da2 +cursor #bcbabe +active_border_color #838085 +active_tab_background #2e2a31 +active_tab_foreground #bcbabe +inactive_tab_background #4a464d +inactive_tab_foreground #9f9da2 + +# normal +color0 #2e2a31 +color1 #d8137f +color2 #17ad98 +color3 #dc8a0e +color4 #796af5 +color5 #bb60ea +color6 #149bda +color7 #bcbabe + +# bright +color8 #838085 +color9 #d8137f +color10 #17ad98 +color11 #dc8a0e +color12 #796af5 +color13 #bb60ea +color14 #149bda +color15 #bcbabe + +# extended base16 colors +color16 #d65407 +color17 #c720ca +color18 #4a464d +color19 #666369 +color20 #9f9da2 +color21 #d8d7da diff --git a/kitty/colors/base16/base16-unikitty-dark.conf b/kitty/colors/base16/base16-unikitty-dark.conf new file mode 100755 index 0000000..f6a8081 --- /dev/null +++ b/kitty/colors/base16/base16-unikitty-dark.conf @@ -0,0 +1,33 @@ +# Base16 Unikitty Dark - kitty color config +# Josh W Lewis (@joshwlewis) +background #2e2a31 +foreground #bcbabe +selection_background #bcbabe +selection_foreground #2e2a31 +url_color #9f9da2 +cursor #bcbabe +active_border_color #838085 +active_tab_background #2e2a31 +active_tab_foreground #bcbabe +inactive_tab_background #4a464d +inactive_tab_foreground #9f9da2 + +# normal +color0 #2e2a31 +color1 #d8137f +color2 #17ad98 +color3 #dc8a0e +color4 #796af5 +color5 #bb60ea +color6 #149bda +color7 #bcbabe + +# bright +color8 #838085 +color9 #d65407 +color10 #4a464d +color11 #666369 +color12 #9f9da2 +color13 #d8d7da +color14 #c720ca +color15 #bcbabe diff --git a/kitty/colors/base16/base16-unikitty-light-256.conf b/kitty/colors/base16/base16-unikitty-light-256.conf new file mode 100755 index 0000000..211d4d8 --- /dev/null +++ b/kitty/colors/base16/base16-unikitty-light-256.conf @@ -0,0 +1,41 @@ +# Base16 Unikitty Light - kitty color config +# Josh W Lewis (@joshwlewis) +background #ffffff +foreground #6c696e +selection_background #6c696e +selection_foreground #ffffff +url_color #89878b +cursor #6c696e +active_border_color #a7a5a8 +active_tab_background #ffffff +active_tab_foreground #6c696e +inactive_tab_background #e1e1e2 +inactive_tab_foreground #89878b + +# normal +color0 #ffffff +color1 #d8137f +color2 #17ad98 +color3 #dc8a0e +color4 #775dff +color5 #aa17e6 +color6 #149bda +color7 #6c696e + +# bright +color8 #a7a5a8 +color9 #d8137f +color10 #17ad98 +color11 #dc8a0e +color12 #775dff +color13 #aa17e6 +color14 #149bda +color15 #6c696e + +# extended base16 colors +color16 #d65407 +color17 #e013d0 +color18 #e1e1e2 +color19 #c4c3c5 +color20 #89878b +color21 #4f4b51 diff --git a/kitty/colors/base16/base16-unikitty-light.conf b/kitty/colors/base16/base16-unikitty-light.conf new file mode 100755 index 0000000..9f128a7 --- /dev/null +++ b/kitty/colors/base16/base16-unikitty-light.conf @@ -0,0 +1,33 @@ +# Base16 Unikitty Light - kitty color config +# Josh W Lewis (@joshwlewis) +background #ffffff +foreground #6c696e +selection_background #6c696e +selection_foreground #ffffff +url_color #89878b +cursor #6c696e +active_border_color #a7a5a8 +active_tab_background #ffffff +active_tab_foreground #6c696e +inactive_tab_background #e1e1e2 +inactive_tab_foreground #89878b + +# normal +color0 #ffffff +color1 #d8137f +color2 #17ad98 +color3 #dc8a0e +color4 #775dff +color5 #aa17e6 +color6 #149bda +color7 #6c696e + +# bright +color8 #a7a5a8 +color9 #d65407 +color10 #e1e1e2 +color11 #c4c3c5 +color12 #89878b +color13 #4f4b51 +color14 #e013d0 +color15 #6c696e diff --git a/kitty/colors/base16/base16-woodland-256.conf b/kitty/colors/base16/base16-woodland-256.conf new file mode 100755 index 0000000..f5e5974 --- /dev/null +++ b/kitty/colors/base16/base16-woodland-256.conf @@ -0,0 +1,41 @@ +# Base16 Woodland - kitty color config +# Jay Cornwall (https://jcornwall.com) +background #231e18 +foreground #cabcb1 +selection_background #cabcb1 +selection_foreground #231e18 +url_color #b4a490 +cursor #cabcb1 +active_border_color #9d8b70 +active_tab_background #231e18 +active_tab_foreground #cabcb1 +inactive_tab_background #302b25 +inactive_tab_foreground #b4a490 + +# normal +color0 #231e18 +color1 #d35c5c +color2 #b7ba53 +color3 #e0ac16 +color4 #88a4d3 +color5 #bb90e2 +color6 #6eb958 +color7 #cabcb1 + +# bright +color8 #9d8b70 +color9 #d35c5c +color10 #b7ba53 +color11 #e0ac16 +color12 #88a4d3 +color13 #bb90e2 +color14 #6eb958 +color15 #cabcb1 + +# extended base16 colors +color16 #ca7f32 +color17 #b49368 +color18 #302b25 +color19 #48413a +color20 #b4a490 +color21 #d7c8bc diff --git a/kitty/colors/base16/base16-woodland.conf b/kitty/colors/base16/base16-woodland.conf new file mode 100755 index 0000000..a633e39 --- /dev/null +++ b/kitty/colors/base16/base16-woodland.conf @@ -0,0 +1,33 @@ +# Base16 Woodland - kitty color config +# Jay Cornwall (https://jcornwall.com) +background #231e18 +foreground #cabcb1 +selection_background #cabcb1 +selection_foreground #231e18 +url_color #b4a490 +cursor #cabcb1 +active_border_color #9d8b70 +active_tab_background #231e18 +active_tab_foreground #cabcb1 +inactive_tab_background #302b25 +inactive_tab_foreground #b4a490 + +# normal +color0 #231e18 +color1 #d35c5c +color2 #b7ba53 +color3 #e0ac16 +color4 #88a4d3 +color5 #bb90e2 +color6 #6eb958 +color7 #cabcb1 + +# bright +color8 #9d8b70 +color9 #ca7f32 +color10 #302b25 +color11 #48413a +color12 #b4a490 +color13 #d7c8bc +color14 #b49368 +color15 #cabcb1 diff --git a/kitty/colors/base16/base16-xcode-dusk-256.conf b/kitty/colors/base16/base16-xcode-dusk-256.conf new file mode 100755 index 0000000..453781a --- /dev/null +++ b/kitty/colors/base16/base16-xcode-dusk-256.conf @@ -0,0 +1,41 @@ +# Base16 XCode Dusk - kitty color config +# Elsa Gonsiorowski (https://github.com/gonsie) +background #282b35 +foreground #939599 +selection_background #939599 +selection_foreground #282b35 +url_color #7e8086 +cursor #939599 +active_border_color #686a71 +active_tab_background #282b35 +active_tab_foreground #939599 +inactive_tab_background #3d4048 +inactive_tab_foreground #7e8086 + +# normal +color0 #282b35 +color1 #b21889 +color2 #df0002 +color3 #438288 +color4 #790ead +color5 #b21889 +color6 #00a0be +color7 #939599 + +# bright +color8 #686a71 +color9 #b21889 +color10 #df0002 +color11 #438288 +color12 #790ead +color13 #b21889 +color14 #00a0be +color15 #939599 + +# extended base16 colors +color16 #786dc5 +color17 #c77c48 +color18 #3d4048 +color19 #53555d +color20 #7e8086 +color21 #a9aaae diff --git a/kitty/colors/base16/base16-xcode-dusk.conf b/kitty/colors/base16/base16-xcode-dusk.conf new file mode 100755 index 0000000..de17cba --- /dev/null +++ b/kitty/colors/base16/base16-xcode-dusk.conf @@ -0,0 +1,33 @@ +# Base16 XCode Dusk - kitty color config +# Elsa Gonsiorowski (https://github.com/gonsie) +background #282b35 +foreground #939599 +selection_background #939599 +selection_foreground #282b35 +url_color #7e8086 +cursor #939599 +active_border_color #686a71 +active_tab_background #282b35 +active_tab_foreground #939599 +inactive_tab_background #3d4048 +inactive_tab_foreground #7e8086 + +# normal +color0 #282b35 +color1 #b21889 +color2 #df0002 +color3 #438288 +color4 #790ead +color5 #b21889 +color6 #00a0be +color7 #939599 + +# bright +color8 #686a71 +color9 #786dc5 +color10 #3d4048 +color11 #53555d +color12 #7e8086 +color13 #a9aaae +color14 #c77c48 +color15 #939599 diff --git a/kitty/colors/base16/base16-zenburn-256.conf b/kitty/colors/base16/base16-zenburn-256.conf new file mode 100755 index 0000000..f0ebc12 --- /dev/null +++ b/kitty/colors/base16/base16-zenburn-256.conf @@ -0,0 +1,41 @@ +# Base16 Zenburn - kitty color config +# elnawe +background #3f3f3f +foreground #dcdccc +selection_background #dcdccc +selection_foreground #3f3f3f +url_color #808080 +cursor #dcdccc +active_border_color #4f4f4f +active_tab_background #3f3f3f +active_tab_foreground #dcdccc +inactive_tab_background #404040 +inactive_tab_foreground #808080 + +# normal +color0 #3f3f3f +color1 #dca3a3 +color2 #5f7f5f +color3 #e0cf9f +color4 #7cb8bb +color5 #dc8cc3 +color6 #93e0e3 +color7 #dcdccc + +# bright +color8 #4f4f4f +color9 #dca3a3 +color10 #5f7f5f +color11 #e0cf9f +color12 #7cb8bb +color13 #dc8cc3 +color14 #93e0e3 +color15 #dcdccc + +# extended base16 colors +color16 #dfaf8f +color17 #000000 +color18 #404040 +color19 #606060 +color20 #808080 +color21 #c0c0c0 diff --git a/kitty/colors/base16/base16-zenburn.conf b/kitty/colors/base16/base16-zenburn.conf new file mode 100755 index 0000000..070c1a9 --- /dev/null +++ b/kitty/colors/base16/base16-zenburn.conf @@ -0,0 +1,33 @@ +# Base16 Zenburn - kitty color config +# elnawe +background #3f3f3f +foreground #dcdccc +selection_background #dcdccc +selection_foreground #3f3f3f +url_color #808080 +cursor #dcdccc +active_border_color #4f4f4f +active_tab_background #3f3f3f +active_tab_foreground #dcdccc +inactive_tab_background #404040 +inactive_tab_foreground #808080 + +# normal +color0 #3f3f3f +color1 #dca3a3 +color2 #5f7f5f +color3 #e0cf9f +color4 #7cb8bb +color5 #dc8cc3 +color6 #93e0e3 +color7 #dcdccc + +# bright +color8 #4f4f4f +color9 #dfaf8f +color10 #404040 +color11 #606060 +color12 #808080 +color13 #c0c0c0 +color14 #000000 +color15 #dcdccc diff --git a/kitty/kitty.conf b/kitty/kitty.conf new file mode 100644 index 0000000..1938995 --- /dev/null +++ b/kitty/kitty.conf @@ -0,0 +1,30 @@ +include colors/base16/base16-gruvbox-dark-hard-256.conf + +font_family Iosevka Term Medium +font_size 11 +bold_font Iosevka Term Heavy +italic_font Iosevka Term Medium Oblique +bold_italic_font Iosevka Term Heavy Oblique +adjust_line_height 95% + +tab_bar_style separator +tab_separator " ┇ " + +term xterm-256color + +map ctrl+shift+enter new_window_with_cwd + +map ctrl+shift+t new_tab_with_cwd + +map ctrl+shift+1 goto_tab 1 +map ctrl+shift+2 goto_tab 2 +map ctrl+shift+3 goto_tab 3 +map ctrl+shift+4 goto_tab 4 +map ctrl+shift+5 goto_tab 5 +map ctrl+shift+6 goto_tab 6 +map ctrl+shift+7 goto_tab 7 +map ctrl+shift+8 goto_tab 8 +map ctrl+shift+9 goto_tab 9 + +# Would open the scrollback buffer in a new window when you press the F1 key +map f1 pipe @ansi window less +G -R