First stab at converting to farout palette
Also renamed all/most instances of tokyonight to farout
This commit is contained in:
@@ -1,28 +1,6 @@
|
||||
# 🏙 Tokyo Night
|
||||
# FarOut
|
||||
|
||||
A dark and light [Neovim](https://github.com/neovim/neovim) theme written in
|
||||
[Lua](https://www.lua.org) ported from the [Visual Studio Code
|
||||
TokyoNight](https://github.com/enkia/tokyo-night-vscode-theme) theme. Includes
|
||||
[extra](#-extras) themes for [Kitty](https://sw.kovidgoyal.net/kitty/conf.html),
|
||||
[Alacritty](https://github.com/alacritty/alacritty),
|
||||
[iTerm](https://iterm2.com/) and
|
||||
[Fish](https://fishshell.com/docs/current/index.html).
|
||||
|
||||
## Storm
|
||||
|
||||

|
||||
|
||||
## Night
|
||||
|
||||

|
||||
|
||||
## Moon
|
||||
|
||||

|
||||
|
||||
## Day
|
||||
|
||||

|
||||
FarOut colorscheme for NeoVim.
|
||||
|
||||
## ✨ Features
|
||||
|
||||
@@ -31,7 +9,7 @@ TokyoNight](https://github.com/enkia/tokyo-night-vscode-theme) theme. Includes
|
||||
- Enhances terminal colors.
|
||||
- Introduces a darker background option for sidebar-like windows.
|
||||
- Supports all major plugins.
|
||||
- Provides [TokyoNight](https://github.com/folke/tokyonight.nvim)
|
||||
- Provides [Farout](https://github.com/thallada/farout.nvim)
|
||||
[extras](#-extras) for numerous other applications.
|
||||
|
||||
### 🍭 Extras
|
||||
@@ -72,7 +50,7 @@ Install the theme with your preferred package manager, such as
|
||||
|
||||
```lua
|
||||
{
|
||||
"folke/tokyonight.nvim",
|
||||
"thallada/farout.nvim",
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
opts = {},
|
||||
@@ -84,19 +62,19 @@ Install the theme with your preferred package manager, such as
|
||||
### Vim Script
|
||||
|
||||
```vim
|
||||
colorscheme tokyonight
|
||||
colorscheme farout
|
||||
|
||||
" There are also colorschemes for the different styles.
|
||||
colorscheme tokyonight-night
|
||||
colorscheme tokyonight-storm
|
||||
colorscheme tokyonight-day
|
||||
colorscheme tokyonight-moon
|
||||
" colorscheme farout-night
|
||||
" colorscheme farout-storm
|
||||
" colorscheme farout-day
|
||||
" colorscheme farout-moon
|
||||
```
|
||||
|
||||
### [Lua](https://www.lua.org)
|
||||
|
||||
```lua
|
||||
vim.cmd[[colorscheme tokyonight]]
|
||||
vim.cmd[[colorscheme farout]]
|
||||
```
|
||||
|
||||
#### External Plugins
|
||||
@@ -107,7 +85,7 @@ vim.cmd[[colorscheme tokyonight]]
|
||||
-- Lua
|
||||
require('barbecue').setup {
|
||||
-- ... your barbecue config
|
||||
theme = 'tokyonight',
|
||||
theme = 'farout',
|
||||
-- ... your barbecue config
|
||||
}
|
||||
```
|
||||
@@ -119,7 +97,7 @@ require('barbecue').setup {
|
||||
require('lualine').setup {
|
||||
options = {
|
||||
-- ... your lualine config
|
||||
theme = 'tokyonight'
|
||||
theme = 'farout'
|
||||
-- ... your lualine config
|
||||
}
|
||||
}
|
||||
@@ -129,12 +107,12 @@ require('lualine').setup {
|
||||
|
||||
```vim
|
||||
" Vim Script
|
||||
let g:lightline = {'colorscheme': 'tokyonight'}
|
||||
let g:lightline = {'colorscheme': 'farout'}
|
||||
```
|
||||
|
||||
## ⚙️ Configuration
|
||||
|
||||
> ❗️ Set the configuration **BEFORE** loading the color scheme with `colorscheme tokyonight`.
|
||||
> ❗️ Set the configuration **BEFORE** loading the color scheme with `colorscheme farout`.
|
||||
|
||||
The theme offers four styles: [storm](#storm), [moon](#moon), [night](#night),
|
||||
and [day](#day).
|
||||
@@ -142,11 +120,11 @@ and [day](#day).
|
||||
The [day](#day) style is used when `{ style = "day" }` is passed to
|
||||
`setup(options)` or when `vim.o.background = "light"`.
|
||||
|
||||
[TokyoNight](https://github.com/folke/tokyonight.nvim) uses the default options,
|
||||
[FarOut](https://github.com/thallada/farout.nvim) uses the default options,
|
||||
unless `setup` is explicitly called.
|
||||
|
||||
```lua
|
||||
require("tokyonight").setup({
|
||||
require("farout").setup({
|
||||
-- your configuration comes here
|
||||
-- or leave it empty to use the default settings
|
||||
style = "storm", -- The theme comes in three styles, `storm`, `moon`, a darker variant `night` and `day`
|
||||
@@ -202,7 +180,7 @@ For default values of `colors` and `highlights`, please consult the
|
||||
### Settings and color alteration demonstration
|
||||
|
||||
```lua
|
||||
require("tokyonight").setup({
|
||||
require("farout").setup({
|
||||
-- use the night style
|
||||
style = "night",
|
||||
-- disable italic for functions
|
||||
@@ -221,7 +199,7 @@ require("tokyonight").setup({
|
||||
### [Borderless Telescope](https://github.com/nvim-telescope/telescope.nvim/wiki/Gallery#borderless) example
|
||||
|
||||
```lua
|
||||
require("tokyonight").setup({
|
||||
require("farout").setup({
|
||||
on_highlights = function(hl, c)
|
||||
local prompt = "#2d3149"
|
||||
hl.TelescopeNormal = {
|
||||
@@ -282,8 +260,8 @@ You can easily use the color palette for other plugins inside your
|
||||
[Neovim](https://github.com/neovim/neovim) configuration:
|
||||
|
||||
```lua
|
||||
local colors = require("tokyonight.colors").setup() -- pass in any of the config options as explained above
|
||||
local util = require("tokyonight.util")
|
||||
local colors = require("farout.colors").setup() -- pass in any of the config options as explained above
|
||||
local util = require("farout.util")
|
||||
|
||||
aplugin.background = colors.bg_dark
|
||||
aplugin.my_error = util.lighten(colors.red1, 0.3) -- number between 0 and 1. 0 results in white, 1 results in red1
|
||||
@@ -298,13 +276,13 @@ generate themes for the different styles.
|
||||
|
||||
How to add a new extra template:
|
||||
|
||||
1. Create a file like `lua/tokyonight/extra/cool-app.lua`.
|
||||
1. Create a file like `lua/farout/extra/cool-app.lua`.
|
||||
2. Add the name and output file extension to the `extras` table in
|
||||
`lua/tokyonight/extra/init.lua`.
|
||||
3. Run the following command to generate new [extra](#-extras) themes from the tokyonight plugin directory:
|
||||
`lua/farout/extra/init.lua`.
|
||||
3. Run the following command to generate new [extra](#-extras) themes from the farout plugin directory:
|
||||
|
||||
```sh
|
||||
nvim --headless "+lua require('tokyonight.extra').setup()" +qa
|
||||
nvim --headless "+lua require('farout.extra').setup()" +qa
|
||||
```
|
||||
|
||||
4. Check the newly created themes in the `extra/` directory. Please **DO NOT**
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
let s:palette = v:lua.require('lightline.colorscheme.farout')
|
||||
let g:lightline#colorscheme#farout#palette = lightline#colorscheme#fill(s:palette)
|
||||
@@ -1,2 +0,0 @@
|
||||
let s:palette = v:lua.require('lightline.colorscheme.tokyonight')
|
||||
let g:lightline#colorscheme#tokyonight#palette = lightline#colorscheme#fill(s:palette)
|
||||
@@ -0,0 +1 @@
|
||||
require("farout")._load("day")
|
||||
@@ -0,0 +1 @@
|
||||
require("farout")._load("moon")
|
||||
@@ -0,0 +1 @@
|
||||
require("farout")._load("night")
|
||||
@@ -0,0 +1 @@
|
||||
require("farout")._load("storm")
|
||||
@@ -0,0 +1 @@
|
||||
require("farout")._load()
|
||||
@@ -1 +0,0 @@
|
||||
require("tokyonight")._load("day")
|
||||
@@ -1 +0,0 @@
|
||||
require("tokyonight")._load("moon")
|
||||
@@ -1 +0,0 @@
|
||||
require("tokyonight")._load("night")
|
||||
@@ -1 +0,0 @@
|
||||
require("tokyonight")._load("storm")
|
||||
@@ -1 +0,0 @@
|
||||
require("tokyonight")._load()
|
||||
@@ -1,55 +1,39 @@
|
||||
*tokyonight.nvim.txt* For Neovim >= 0.8.0 Last change: 2023 October 25
|
||||
farout.nvim.txt* For Neovim >= 0.8.0 Last change: 2023 October 25
|
||||
|
||||
==============================================================================
|
||||
Table of Contents *tokyonight.nvim-table-of-contents*
|
||||
Table of Contents *farout.nvim-table-of-contents*
|
||||
|
||||
1. Tokyo Night |tokyonight.nvim-tokyo-night|
|
||||
- Storm |tokyonight.nvim-tokyo-night-storm|
|
||||
- Night |tokyonight.nvim-tokyo-night-night|
|
||||
- Moon |tokyonight.nvim-tokyo-night-moon|
|
||||
- Day |tokyonight.nvim-tokyo-night-day|
|
||||
- Features |tokyonight.nvim-tokyo-night-features|
|
||||
- Requirements |tokyonight.nvim-tokyo-night-requirements|
|
||||
- Installation |tokyonight.nvim-tokyo-night-installation|
|
||||
- Usage |tokyonight.nvim-tokyo-night-usage|
|
||||
- Configuration |tokyonight.nvim-tokyo-night-configuration|
|
||||
- Overriding Colors & Highlight Groups|tokyonight.nvim-tokyo-night-overriding-colors-&-highlight-groups|
|
||||
- Extras |tokyonight.nvim-tokyo-night-extras|
|
||||
- Contributing |tokyonight.nvim-tokyo-night-contributing|
|
||||
1. FarOut |farout.nvim-tokyo-night|
|
||||
- Features |farout.nvim-tokyo-night-features|
|
||||
- Requirements |farout.nvim-tokyo-night-requirements|
|
||||
- Installation |farout.nvim-tokyo-night-installation|
|
||||
- Usage |farout.nvim-tokyo-night-usage|
|
||||
- Configuration |farout.nvim-tokyo-night-configuration|
|
||||
- Overriding Colors & Highlight Groups|farout.nvim-tokyo-night-overriding-colors-&-highlight-groups|
|
||||
- Extras |farout.nvim-tokyo-night-extras|
|
||||
- Contributing |farout.nvim-tokyo-night-contributing|
|
||||
|
||||
==============================================================================
|
||||
1. Tokyo Night *tokyonight.nvim-tokyo-night*
|
||||
1. Tokyo Night *farout.nvim-tokyo-night*
|
||||
|
||||
A dark and light Neovim <https://github.com/neovim/neovim> theme written in Lua
|
||||
<https://www.lua.org> ported from the Visual Studio Code TokyoNight
|
||||
<https://www.lua.org> ported from the Visual Studio Code FarOut
|
||||
<https://github.com/enkia/tokyo-night-vscode-theme> theme. Includes
|
||||
|tokyonight.nvim-extra| themes for Kitty
|
||||
|farout.nvim-extra| themes for Kitty
|
||||
<https://sw.kovidgoyal.net/kitty/conf.html>, Alacritty
|
||||
<https://github.com/alacritty/alacritty>, iTerm <https://iterm2.com/> and Fish
|
||||
<https://fishshell.com/docs/current/index.html>.
|
||||
|
||||
|
||||
STORM *tokyonight.nvim-tokyo-night-storm*
|
||||
|
||||
|
||||
NIGHT *tokyonight.nvim-tokyo-night-night*
|
||||
|
||||
|
||||
MOON *tokyonight.nvim-tokyo-night-moon*
|
||||
|
||||
|
||||
DAY *tokyonight.nvim-tokyo-night-day*
|
||||
|
||||
|
||||
FEATURES *tokyonight.nvim-tokyo-night-features*
|
||||
FEATURES *farout.nvim-tokyo-night-features*
|
||||
|
||||
- Supports the latest Neovim <https://github.com/neovim/neovim>
|
||||
0.9.0 <https://github.com/neovim/neovim/releases/tag/v0.9.0> features.
|
||||
- Enhances terminal colors.
|
||||
- Introduces a darker background option for sidebar-like windows.
|
||||
- Supports all major plugins.
|
||||
- Provides TokyoNight <https://github.com/folke/tokyonight.nvim>
|
||||
|tokyonight.nvim-extras| for numerous other applications.
|
||||
- Provides FarOut <https://github.com/folke/farout.nvim>
|
||||
|farout.nvim-extras| for numerous other applications.
|
||||
|
||||
|
||||
EXTRAS ~
|
||||
@@ -77,20 +61,20 @@ EXTRAS ~
|
||||
- Zathura <https://pwmt.org/projects/zathura/> (zathura <extras/zathura>)
|
||||
|
||||
|
||||
REQUIREMENTS *tokyonight.nvim-tokyo-night-requirements*
|
||||
REQUIREMENTS *farout.nvim-tokyo-night-requirements*
|
||||
|
||||
- Neovim <https://github.com/neovim/neovim> >=
|
||||
0.7.2 <https://github.com/neovim/neovim/releases/tag/v0.7.2>
|
||||
|
||||
|
||||
INSTALLATION *tokyonight.nvim-tokyo-night-installation*
|
||||
INSTALLATION *farout.nvim-tokyo-night-installation*
|
||||
|
||||
Install the theme with your preferred package manager, such as folke/lazy.nvim
|
||||
<https://github.com/folke/lazy.nvim>
|
||||
|
||||
>lua
|
||||
{
|
||||
"folke/tokyonight.nvim",
|
||||
"thallada/farout.nvim",
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
opts = {},
|
||||
@@ -98,26 +82,26 @@ Install the theme with your preferred package manager, such as folke/lazy.nvim
|
||||
<
|
||||
|
||||
|
||||
USAGE *tokyonight.nvim-tokyo-night-usage*
|
||||
USAGE *farout.nvim-tokyo-night-usage*
|
||||
|
||||
|
||||
VIM SCRIPT ~
|
||||
|
||||
>vim
|
||||
colorscheme tokyonight
|
||||
colorscheme farout
|
||||
|
||||
" There are also colorschemes for the different styles.
|
||||
colorscheme tokyonight-night
|
||||
colorscheme tokyonight-storm
|
||||
colorscheme tokyonight-day
|
||||
colorscheme tokyonight-moon
|
||||
" colorscheme farout-night
|
||||
" colorscheme farout-storm
|
||||
" colorscheme farout-day
|
||||
" colorscheme farout-moon
|
||||
<
|
||||
|
||||
|
||||
LUA ~
|
||||
|
||||
>lua
|
||||
vim.cmd[[colorscheme tokyonight]]
|
||||
vim.cmd[[colorscheme farout]]
|
||||
<
|
||||
|
||||
|
||||
@@ -130,7 +114,7 @@ BARBECUE
|
||||
-- Lua
|
||||
require('barbecue').setup {
|
||||
-- ... your barbecue config
|
||||
theme = 'tokyonight',
|
||||
theme = 'farout',
|
||||
-- ... your barbecue config
|
||||
}
|
||||
<
|
||||
@@ -143,7 +127,7 @@ LUALINE
|
||||
require('lualine').setup {
|
||||
options = {
|
||||
-- ... your lualine config
|
||||
theme = 'tokyonight'
|
||||
theme = 'farout'
|
||||
-- ... your lualine config
|
||||
}
|
||||
}
|
||||
@@ -154,26 +138,26 @@ LIGHTLINE
|
||||
|
||||
>vim
|
||||
" Vim Script
|
||||
let g:lightline = {'colorscheme': 'tokyonight'}
|
||||
let g:lightline = {'colorscheme': 'farout'}
|
||||
<
|
||||
|
||||
|
||||
CONFIGURATION *tokyonight.nvim-tokyo-night-configuration*
|
||||
CONFIGURATION *farout.nvim-tokyo-night-configuration*
|
||||
|
||||
|
||||
Set the configuration **BEFORE** loading the color scheme with `colorscheme
|
||||
tokyonight`.
|
||||
The theme offers four styles: |tokyonight.nvim-storm|, |tokyonight.nvim-moon|,
|
||||
|tokyonight.nvim-night|, and |tokyonight.nvim-day|.
|
||||
farout`.
|
||||
The theme offers four styles: |farout.nvim-storm|, |farout.nvim-moon|,
|
||||
|farout.nvim-night|, and |farout.nvim-day|.
|
||||
|
||||
The |tokyonight.nvim-day| style is used when `{ style = "day" }` is passed to
|
||||
The |farout.nvim-day| style is used when `{ style = "day" }` is passed to
|
||||
`setup(options)` or when `vim.o.background = "light"`.
|
||||
|
||||
TokyoNight <https://github.com/folke/tokyonight.nvim> uses the default options,
|
||||
FarOut <https://github.com/folke/farout.nvim> uses the default options,
|
||||
unless `setup` is explicitly called.
|
||||
|
||||
>lua
|
||||
require("tokyonight").setup({
|
||||
require("farout").setup({
|
||||
-- your configuration comes here
|
||||
-- or leave it empty to use the default settings
|
||||
style = "storm", -- The theme comes in three styles, `storm`, `moon`, a darker variant `night` and `day`
|
||||
@@ -211,7 +195,7 @@ unless `setup` is explicitly called.
|
||||
<
|
||||
|
||||
|
||||
OVERRIDING COLORS & HIGHLIGHT GROUPS*tokyonight.nvim-tokyo-night-overriding-colors-&-highlight-groups*
|
||||
OVERRIDING COLORS & HIGHLIGHT GROUPS*farout.nvim-tokyo-night-overriding-colors-&-highlight-groups*
|
||||
|
||||
How the highlight groups are calculated:
|
||||
|
||||
@@ -230,7 +214,7 @@ themes.
|
||||
SETTINGS AND COLOR ALTERATION DEMONSTRATION ~
|
||||
|
||||
>lua
|
||||
require("tokyonight").setup({
|
||||
require("farout").setup({
|
||||
-- use the night style
|
||||
style = "night",
|
||||
-- disable italic for functions
|
||||
@@ -250,7 +234,7 @@ SETTINGS AND COLOR ALTERATION DEMONSTRATION ~
|
||||
BORDERLESS TELESCOPE EXAMPLE ~
|
||||
|
||||
>lua
|
||||
require("tokyonight").setup({
|
||||
require("farout").setup({
|
||||
on_highlights = function(hl, c)
|
||||
local prompt = "#2d3149"
|
||||
hl.TelescopeNormal = {
|
||||
@@ -298,7 +282,7 @@ To have undercurls show up and in color, add the following to your Tmux
|
||||
<
|
||||
|
||||
|
||||
EXTRAS *tokyonight.nvim-tokyo-night-extras*
|
||||
EXTRAS *farout.nvim-tokyo-night-extras*
|
||||
|
||||
Extra color configs for Kitty <https://sw.kovidgoyal.net/kitty/conf.html>,
|
||||
Alacritty <https://github.com/alacritty/alacritty>, Fish
|
||||
@@ -311,35 +295,35 @@ You can easily use the color palette for other plugins inside your Neovim
|
||||
<https://github.com/neovim/neovim> configuration:
|
||||
|
||||
>lua
|
||||
local colors = require("tokyonight.colors").setup() -- pass in any of the config options as explained above
|
||||
local util = require("tokyonight.util")
|
||||
local colors = require("farout.colors").setup() -- pass in any of the config options as explained above
|
||||
local util = require("farout.util")
|
||||
|
||||
aplugin.background = colors.bg_dark
|
||||
aplugin.my_error = util.lighten(colors.red1, 0.3) -- number between 0 and 1. 0 results in white, 1 results in red1
|
||||
<
|
||||
|
||||
|
||||
CONTRIBUTING *tokyonight.nvim-tokyo-night-contributing*
|
||||
CONTRIBUTING *farout.nvim-tokyo-night-contributing*
|
||||
|
||||
Pull requests are welcome.
|
||||
|
||||
For the |tokyonight.nvim-extras|, we use a simple template system that can be
|
||||
For the |farout.nvim-extras|, we use a simple template system that can be
|
||||
used to generate themes for the different styles.
|
||||
|
||||
How to add a new extra template:
|
||||
|
||||
1. Create a file like `lua/tokyonight/extra/cool-app.lua`.
|
||||
1. Create a file like `lua/farout/extra/cool-app.lua`.
|
||||
|
||||
|
||||
2. Add the name and output file extension to the `extras` table in
|
||||
`lua/tokyonight/extra/init.lua`.
|
||||
`lua/farout/extra/init.lua`.
|
||||
|
||||
|
||||
3. Run the following command to generate new |tokyonight.nvim-extra| themes from
|
||||
the tokyonight plugin directory:
|
||||
3. Run the following command to generate new |farout.nvim-extra| themes from
|
||||
the farout plugin directory:
|
||||
|
||||
>sh
|
||||
nvim --headless "+lua require('tokyonight.extra').setup()" +qa
|
||||
nvim --headless "+lua require('farout.extra').setup()" +qa
|
||||
<
|
||||
|
||||
|
||||
@@ -349,13 +333,7 @@ commit them, as they are already automatically built by the CI.
|
||||
|
||||
|
||||
==============================================================================
|
||||
2. Links *tokyonight.nvim-links*
|
||||
|
||||
1. *image*: https://user-images.githubusercontent.com/292349/115295095-3a9e5080-a10e-11eb-9aed-6054488c46ce.png
|
||||
2. *image*: https://user-images.githubusercontent.com/292349/115295327-7afdce80-a10e-11eb-89b3-2591262bf95a.png
|
||||
3. *image*: https://user-images.githubusercontent.com/292349/190951628-10ba28a1-57ff-4479-8eab-47400a402242.png
|
||||
4. *image*: https://user-images.githubusercontent.com/292349/115996270-78c6c480-a593-11eb-8ed0-7d1400b058f5.png
|
||||
5. *image*: https://user-images.githubusercontent.com/292349/115395546-d8d6f880-a198-11eb-98fb-a1194787701d.png
|
||||
2. Links *farout.nvim-links*
|
||||
|
||||
Generated by panvimdoc <https://github.com/kdheepak/panvimdoc>
|
||||
|
||||
@@ -0,0 +1,34 @@
|
||||
# FarOut Alacritty Colors
|
||||
colors:
|
||||
# Default colors
|
||||
primary:
|
||||
background: '0xe1e2e7'
|
||||
foreground: '0x6c6252'
|
||||
|
||||
# Normal colors
|
||||
normal:
|
||||
black: '0xe9e9ed'
|
||||
red: '0xdb5234'
|
||||
green: '0x715e4b'
|
||||
yellow: '0x9b6635'
|
||||
blue: '0xc77544'
|
||||
magenta: '0xc37f87'
|
||||
cyan: '0x91654c'
|
||||
white: '0x9b6635'
|
||||
|
||||
# Bright colors
|
||||
bright:
|
||||
black: '0xd1c4c2'
|
||||
red: '0xdb5234'
|
||||
green: '0x715e4b'
|
||||
yellow: '0x9b6635'
|
||||
blue: '0xc77544'
|
||||
magenta: '0xc37f87'
|
||||
cyan: '0x91654c'
|
||||
white: '0x6c6252'
|
||||
|
||||
indexed_colors:
|
||||
- { index: 16, color: '0xb15c00' }
|
||||
- { index: 17, color: '0xa14834' }
|
||||
|
||||
|
||||
@@ -0,0 +1,34 @@
|
||||
# FarOut Alacritty Colors
|
||||
colors:
|
||||
# Default colors
|
||||
primary:
|
||||
background: '0x222436'
|
||||
foreground: '0xc8d3f5'
|
||||
|
||||
# Normal colors
|
||||
normal:
|
||||
black: '0x1b1d2b'
|
||||
red: '0xff757f'
|
||||
green: '0xc3e88d'
|
||||
yellow: '0xffc777'
|
||||
blue: '0x82aaff'
|
||||
magenta: '0xc099ff'
|
||||
cyan: '0x86e1fc'
|
||||
white: '0x828bb8'
|
||||
|
||||
# Bright colors
|
||||
bright:
|
||||
black: '0x444a73'
|
||||
red: '0xff757f'
|
||||
green: '0xc3e88d'
|
||||
yellow: '0xffc777'
|
||||
blue: '0x82aaff'
|
||||
magenta: '0xc099ff'
|
||||
cyan: '0x86e1fc'
|
||||
white: '0xc8d3f5'
|
||||
|
||||
indexed_colors:
|
||||
- { index: 16, color: '0xff966c' }
|
||||
- { index: 17, color: '0xc53b53' }
|
||||
|
||||
|
||||
@@ -0,0 +1,34 @@
|
||||
# FarOut Alacritty Colors
|
||||
colors:
|
||||
# Default colors
|
||||
primary:
|
||||
background: '0x1a1b26'
|
||||
foreground: '0xE0CCAE'
|
||||
|
||||
# Normal colors
|
||||
normal:
|
||||
black: '0x15161e'
|
||||
red: '0xbf472c'
|
||||
green: '0xa4896f'
|
||||
yellow: '0xf2a766'
|
||||
blue: '0xd47d49'
|
||||
magenta: '0x8a4b53'
|
||||
cyan: '0xa67458'
|
||||
white: '0xF2A766'
|
||||
|
||||
# Bright colors
|
||||
bright:
|
||||
black: '0x392D2B'
|
||||
red: '0xbf472c'
|
||||
green: '0xa4896f'
|
||||
yellow: '0xf2a766'
|
||||
blue: '0xd47d49'
|
||||
magenta: '0x8a4b53'
|
||||
cyan: '0xa67458'
|
||||
white: '0xE0CCAE'
|
||||
|
||||
indexed_colors:
|
||||
- { index: 16, color: '0xff9e64' }
|
||||
- { index: 17, color: '0xdf674c' }
|
||||
|
||||
|
||||
@@ -0,0 +1,34 @@
|
||||
# FarOut Alacritty Colors
|
||||
colors:
|
||||
# Default colors
|
||||
primary:
|
||||
background: '0x0f0908'
|
||||
foreground: '0xE0CCAE'
|
||||
|
||||
# Normal colors
|
||||
normal:
|
||||
black: '0x0c0706'
|
||||
red: '0xbf472c'
|
||||
green: '0xa4896f'
|
||||
yellow: '0xf2a766'
|
||||
blue: '0xd47d49'
|
||||
magenta: '0x8a4b53'
|
||||
cyan: '0xa67458'
|
||||
white: '0xF2A766'
|
||||
|
||||
# Bright colors
|
||||
bright:
|
||||
black: '0x392D2B'
|
||||
red: '0xbf472c'
|
||||
green: '0xa4896f'
|
||||
yellow: '0xf2a766'
|
||||
blue: '0xd47d49'
|
||||
magenta: '0x8a4b53'
|
||||
cyan: '0xa67458'
|
||||
white: '0xE0CCAE'
|
||||
|
||||
indexed_colors:
|
||||
- { index: 16, color: '0xff9e64' }
|
||||
- { index: 17, color: '0xdf674c' }
|
||||
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
[delta]
|
||||
minus-style = syntax "#d9cace"
|
||||
minus-non-emph-style = syntax "#d9cace"
|
||||
minus-emph-style = syntax "#d5958f"
|
||||
minus-empty-line-marker-style = syntax "#d9cace"
|
||||
line-numbers-minus-style = "#da6b52"
|
||||
plus-style = syntax "#c5c2c7"
|
||||
plus-non-emph-style = syntax "#c5c2c7"
|
||||
plus-emph-style = syntax "#9b8a83"
|
||||
plus-empty-line-marker-style = syntax "#c5c2c7"
|
||||
line-numbers-plus-style = "#847254"
|
||||
line-numbers-zero-style = "#d79687"
|
||||
@@ -0,0 +1,12 @@
|
||||
[delta]
|
||||
minus-style = syntax "#3a273a"
|
||||
minus-non-emph-style = syntax "#3a273a"
|
||||
minus-emph-style = syntax "#6b2e43"
|
||||
minus-empty-line-marker-style = syntax "#3a273a"
|
||||
line-numbers-minus-style = "#b55a67"
|
||||
plus-style = syntax "#273849"
|
||||
plus-non-emph-style = syntax "#273849"
|
||||
plus-emph-style = syntax "#305f6f"
|
||||
plus-empty-line-marker-style = syntax "#273849"
|
||||
line-numbers-plus-style = "#627259"
|
||||
line-numbers-zero-style = "#3b4261"
|
||||
@@ -0,0 +1,12 @@
|
||||
[delta]
|
||||
minus-style = syntax "#38262c"
|
||||
minus-non-emph-style = syntax "#38262c"
|
||||
minus-emph-style = syntax "#733d37"
|
||||
minus-empty-line-marker-style = syntax "#38262c"
|
||||
line-numbers-minus-style = "#E26F55"
|
||||
plus-style = syntax "#353237"
|
||||
plus-non-emph-style = syntax "#353237"
|
||||
plus-emph-style = syntax "#6b5f5a"
|
||||
plus-empty-line-marker-style = syntax "#353237"
|
||||
line-numbers-plus-style = "#CAAF82"
|
||||
line-numbers-zero-style = "#6B4035"
|
||||
@@ -0,0 +1,12 @@
|
||||
[delta]
|
||||
minus-style = syntax "#2e1712"
|
||||
minus-non-emph-style = syntax "#2e1712"
|
||||
minus-emph-style = syntax "#6d3327"
|
||||
minus-empty-line-marker-style = syntax "#2e1712"
|
||||
line-numbers-minus-style = "#E26F55"
|
||||
plus-style = syntax "#2c231e"
|
||||
plus-non-emph-style = syntax "#2c231e"
|
||||
plus-emph-style = syntax "#655649"
|
||||
plus-empty-line-marker-style = syntax "#2c231e"
|
||||
line-numbers-plus-style = "#CAAF82"
|
||||
line-numbers-zero-style = "#6B4035"
|
||||
@@ -0,0 +1,17 @@
|
||||
# TokyoNight colors for dunst
|
||||
# For more configuraion options see https://github.com/dunst-project/dunst/blob/master/dunstrc
|
||||
|
||||
[urgency_low]
|
||||
background = "#e9e9ec"
|
||||
foreground = "#6c6252"
|
||||
frame_color = "#6c6252"
|
||||
|
||||
[urgency_normal]
|
||||
background = "#e1e2e7"
|
||||
foreground = "#6c6252"
|
||||
frame_color = "#6c6252"
|
||||
|
||||
[urgency_critical]
|
||||
background = "#eae1e0"
|
||||
foreground = "#a14834"
|
||||
frame_color = "#a14834"
|
||||
@@ -0,0 +1,17 @@
|
||||
# TokyoNight colors for dunst
|
||||
# For more configuraion options see https://github.com/dunst-project/dunst/blob/master/dunstrc
|
||||
|
||||
[urgency_low]
|
||||
background = "#1e2030"
|
||||
foreground = "#c8d3f5"
|
||||
frame_color = "#c8d3f5"
|
||||
|
||||
[urgency_normal]
|
||||
background = "#222436"
|
||||
foreground = "#c8d3f5"
|
||||
frame_color = "#c8d3f5"
|
||||
|
||||
[urgency_critical]
|
||||
background = "#2f334d"
|
||||
foreground = "#c53b53"
|
||||
frame_color = "#c53b53"
|
||||
@@ -0,0 +1,17 @@
|
||||
# TokyoNight colors for dunst
|
||||
# For more configuraion options see https://github.com/dunst-project/dunst/blob/master/dunstrc
|
||||
|
||||
[urgency_low]
|
||||
background = "#16161e"
|
||||
foreground = "#E0CCAE"
|
||||
frame_color = "#E0CCAE"
|
||||
|
||||
[urgency_normal]
|
||||
background = "#1a1b26"
|
||||
foreground = "#E0CCAE"
|
||||
frame_color = "#E0CCAE"
|
||||
|
||||
[urgency_critical]
|
||||
background = "#241816"
|
||||
foreground = "#df674c"
|
||||
frame_color = "#df674c"
|
||||
@@ -0,0 +1,17 @@
|
||||
# TokyoNight colors for dunst
|
||||
# For more configuraion options see https://github.com/dunst-project/dunst/blob/master/dunstrc
|
||||
|
||||
[urgency_low]
|
||||
background = "#1f1311"
|
||||
foreground = "#E0CCAE"
|
||||
frame_color = "#E0CCAE"
|
||||
|
||||
[urgency_normal]
|
||||
background = "#0f0908"
|
||||
foreground = "#E0CCAE"
|
||||
frame_color = "#E0CCAE"
|
||||
|
||||
[urgency_critical]
|
||||
background = "#241816"
|
||||
foreground = "#df674c"
|
||||
frame_color = "#df674c"
|
||||
@@ -0,0 +1,36 @@
|
||||
# TokyoNight Color Palette
|
||||
set -l foreground 6c6252
|
||||
set -l selection c48c75
|
||||
set -l comment d79687
|
||||
set -l red db5234
|
||||
set -l orange b15c00
|
||||
set -l yellow 9b6635
|
||||
set -l green 715e4b
|
||||
set -l purple 876060
|
||||
set -l cyan 91654c
|
||||
set -l pink c37f87
|
||||
|
||||
# Syntax Highlighting Colors
|
||||
set -g fish_color_normal $foreground
|
||||
set -g fish_color_command $cyan
|
||||
set -g fish_color_keyword $pink
|
||||
set -g fish_color_quote $yellow
|
||||
set -g fish_color_redirection $foreground
|
||||
set -g fish_color_end $orange
|
||||
set -g fish_color_error $red
|
||||
set -g fish_color_param $purple
|
||||
set -g fish_color_comment $comment
|
||||
set -g fish_color_selection --background=$selection
|
||||
set -g fish_color_search_match --background=$selection
|
||||
set -g fish_color_operator $green
|
||||
set -g fish_color_escape $pink
|
||||
set -g fish_color_autosuggestion $comment
|
||||
|
||||
# Completion Pager Colors
|
||||
set -g fish_pager_color_progress $comment
|
||||
set -g fish_pager_color_prefix $cyan
|
||||
set -g fish_pager_color_completion $foreground
|
||||
set -g fish_pager_color_description $comment
|
||||
set -g fish_pager_color_selected_background --background=$selection
|
||||
|
||||
|
||||
@@ -0,0 +1,36 @@
|
||||
# TokyoNight Color Palette
|
||||
set -l foreground c8d3f5
|
||||
set -l selection 2d3f76
|
||||
set -l comment 636da6
|
||||
set -l red ff757f
|
||||
set -l orange ff966c
|
||||
set -l yellow ffc777
|
||||
set -l green c3e88d
|
||||
set -l purple fca7ea
|
||||
set -l cyan 86e1fc
|
||||
set -l pink c099ff
|
||||
|
||||
# Syntax Highlighting Colors
|
||||
set -g fish_color_normal $foreground
|
||||
set -g fish_color_command $cyan
|
||||
set -g fish_color_keyword $pink
|
||||
set -g fish_color_quote $yellow
|
||||
set -g fish_color_redirection $foreground
|
||||
set -g fish_color_end $orange
|
||||
set -g fish_color_error $red
|
||||
set -g fish_color_param $purple
|
||||
set -g fish_color_comment $comment
|
||||
set -g fish_color_selection --background=$selection
|
||||
set -g fish_color_search_match --background=$selection
|
||||
set -g fish_color_operator $green
|
||||
set -g fish_color_escape $pink
|
||||
set -g fish_color_autosuggestion $comment
|
||||
|
||||
# Completion Pager Colors
|
||||
set -g fish_pager_color_progress $comment
|
||||
set -g fish_pager_color_prefix $cyan
|
||||
set -g fish_pager_color_completion $foreground
|
||||
set -g fish_pager_color_description $comment
|
||||
set -g fish_pager_color_selected_background --background=$selection
|
||||
|
||||
|
||||
@@ -0,0 +1,36 @@
|
||||
# TokyoNight Color Palette
|
||||
set -l foreground E0CCAE
|
||||
set -l selection 714f41
|
||||
set -l comment 6B4035
|
||||
set -l red bf472c
|
||||
set -l orange ff9e64
|
||||
set -l yellow f2a766
|
||||
set -l green a4896f
|
||||
set -l purple a47a7a
|
||||
set -l cyan a67458
|
||||
set -l pink 8a4b53
|
||||
|
||||
# Syntax Highlighting Colors
|
||||
set -g fish_color_normal $foreground
|
||||
set -g fish_color_command $cyan
|
||||
set -g fish_color_keyword $pink
|
||||
set -g fish_color_quote $yellow
|
||||
set -g fish_color_redirection $foreground
|
||||
set -g fish_color_end $orange
|
||||
set -g fish_color_error $red
|
||||
set -g fish_color_param $purple
|
||||
set -g fish_color_comment $comment
|
||||
set -g fish_color_selection --background=$selection
|
||||
set -g fish_color_search_match --background=$selection
|
||||
set -g fish_color_operator $green
|
||||
set -g fish_color_escape $pink
|
||||
set -g fish_color_autosuggestion $comment
|
||||
|
||||
# Completion Pager Colors
|
||||
set -g fish_pager_color_progress $comment
|
||||
set -g fish_pager_color_prefix $cyan
|
||||
set -g fish_pager_color_completion $foreground
|
||||
set -g fish_pager_color_description $comment
|
||||
set -g fish_pager_color_selected_background --background=$selection
|
||||
|
||||
|
||||
@@ -0,0 +1,36 @@
|
||||
# TokyoNight Color Palette
|
||||
set -l foreground E0CCAE
|
||||
set -l selection 6b442f
|
||||
set -l comment 6B4035
|
||||
set -l red bf472c
|
||||
set -l orange ff9e64
|
||||
set -l yellow f2a766
|
||||
set -l green a4896f
|
||||
set -l purple a47a7a
|
||||
set -l cyan a67458
|
||||
set -l pink 8a4b53
|
||||
|
||||
# Syntax Highlighting Colors
|
||||
set -g fish_color_normal $foreground
|
||||
set -g fish_color_command $cyan
|
||||
set -g fish_color_keyword $pink
|
||||
set -g fish_color_quote $yellow
|
||||
set -g fish_color_redirection $foreground
|
||||
set -g fish_color_end $orange
|
||||
set -g fish_color_error $red
|
||||
set -g fish_color_param $purple
|
||||
set -g fish_color_comment $comment
|
||||
set -g fish_color_selection --background=$selection
|
||||
set -g fish_color_search_match --background=$selection
|
||||
set -g fish_color_operator $green
|
||||
set -g fish_color_escape $pink
|
||||
set -g fish_color_autosuggestion $comment
|
||||
|
||||
# Completion Pager Colors
|
||||
set -g fish_pager_color_progress $comment
|
||||
set -g fish_pager_color_prefix $cyan
|
||||
set -g fish_pager_color_completion $foreground
|
||||
set -g fish_pager_color_description $comment
|
||||
set -g fish_pager_color_selected_background --background=$selection
|
||||
|
||||
|
||||
@@ -0,0 +1,25 @@
|
||||
# TokyoNight
|
||||
|
||||
# Syntax Highlighting Colors
|
||||
fish_color_normal 6c6252
|
||||
fish_color_command 91654c
|
||||
fish_color_keyword c37f87
|
||||
fish_color_quote 9b6635
|
||||
fish_color_redirection 6c6252
|
||||
fish_color_end b15c00
|
||||
fish_color_error db5234
|
||||
fish_color_param 876060
|
||||
fish_color_comment d79687
|
||||
fish_color_selection --background=c48c75
|
||||
fish_color_search_match --background=c48c75
|
||||
fish_color_operator 715e4b
|
||||
fish_color_escape c37f87
|
||||
fish_color_autosuggestion d79687
|
||||
|
||||
# Completion Pager Colors
|
||||
fish_pager_color_progress d79687
|
||||
fish_pager_color_prefix 91654c
|
||||
fish_pager_color_completion 6c6252
|
||||
fish_pager_color_description d79687
|
||||
fish_pager_color_selected_background --background=c48c75
|
||||
|
||||
@@ -0,0 +1,25 @@
|
||||
# TokyoNight
|
||||
|
||||
# Syntax Highlighting Colors
|
||||
fish_color_normal c8d3f5
|
||||
fish_color_command 86e1fc
|
||||
fish_color_keyword c099ff
|
||||
fish_color_quote ffc777
|
||||
fish_color_redirection c8d3f5
|
||||
fish_color_end ff966c
|
||||
fish_color_error ff757f
|
||||
fish_color_param fca7ea
|
||||
fish_color_comment 636da6
|
||||
fish_color_selection --background=2d3f76
|
||||
fish_color_search_match --background=2d3f76
|
||||
fish_color_operator c3e88d
|
||||
fish_color_escape c099ff
|
||||
fish_color_autosuggestion 636da6
|
||||
|
||||
# Completion Pager Colors
|
||||
fish_pager_color_progress 636da6
|
||||
fish_pager_color_prefix 86e1fc
|
||||
fish_pager_color_completion c8d3f5
|
||||
fish_pager_color_description 636da6
|
||||
fish_pager_color_selected_background --background=2d3f76
|
||||
|
||||
@@ -0,0 +1,25 @@
|
||||
# TokyoNight
|
||||
|
||||
# Syntax Highlighting Colors
|
||||
fish_color_normal E0CCAE
|
||||
fish_color_command a67458
|
||||
fish_color_keyword 8a4b53
|
||||
fish_color_quote f2a766
|
||||
fish_color_redirection E0CCAE
|
||||
fish_color_end ff9e64
|
||||
fish_color_error bf472c
|
||||
fish_color_param a47a7a
|
||||
fish_color_comment 6B4035
|
||||
fish_color_selection --background=714f41
|
||||
fish_color_search_match --background=714f41
|
||||
fish_color_operator a4896f
|
||||
fish_color_escape 8a4b53
|
||||
fish_color_autosuggestion 6B4035
|
||||
|
||||
# Completion Pager Colors
|
||||
fish_pager_color_progress 6B4035
|
||||
fish_pager_color_prefix a67458
|
||||
fish_pager_color_completion E0CCAE
|
||||
fish_pager_color_description 6B4035
|
||||
fish_pager_color_selected_background --background=714f41
|
||||
|
||||
@@ -0,0 +1,25 @@
|
||||
# TokyoNight
|
||||
|
||||
# Syntax Highlighting Colors
|
||||
fish_color_normal E0CCAE
|
||||
fish_color_command a67458
|
||||
fish_color_keyword 8a4b53
|
||||
fish_color_quote f2a766
|
||||
fish_color_redirection E0CCAE
|
||||
fish_color_end ff9e64
|
||||
fish_color_error bf472c
|
||||
fish_color_param a47a7a
|
||||
fish_color_comment 6B4035
|
||||
fish_color_selection --background=6b442f
|
||||
fish_color_search_match --background=6b442f
|
||||
fish_color_operator a4896f
|
||||
fish_color_escape 8a4b53
|
||||
fish_color_autosuggestion 6B4035
|
||||
|
||||
# Completion Pager Colors
|
||||
fish_pager_color_progress 6B4035
|
||||
fish_pager_color_prefix a67458
|
||||
fish_pager_color_completion E0CCAE
|
||||
fish_pager_color_description 6B4035
|
||||
fish_pager_color_selected_background --background=6b442f
|
||||
|
||||
@@ -0,0 +1,30 @@
|
||||
[cursor]
|
||||
color=6c6252 c48c75
|
||||
|
||||
[colors]
|
||||
foreground=6c6252
|
||||
background=e1e2e7
|
||||
selection-foreground=6c6252
|
||||
selection-background=c48c75
|
||||
urls=887562
|
||||
|
||||
regular0=e9e9ed
|
||||
regular1=db5234
|
||||
regular2=715e4b
|
||||
regular3=9b6635
|
||||
regular4=c77544
|
||||
regular5=c37f87
|
||||
regular6=91654c
|
||||
regular7=9b6635
|
||||
|
||||
bright0=d1c4c2
|
||||
bright1=db5234
|
||||
bright2=715e4b
|
||||
bright3=9b6635
|
||||
bright4=c77544
|
||||
bright5=c37f87
|
||||
bright6=91654c
|
||||
bright7=6c6252
|
||||
|
||||
16=b15c00
|
||||
17=a14834
|
||||
@@ -0,0 +1,30 @@
|
||||
[cursor]
|
||||
color=c8d3f5 2d3f76
|
||||
|
||||
[colors]
|
||||
foreground=c8d3f5
|
||||
background=222436
|
||||
selection-foreground=c8d3f5
|
||||
selection-background=2d3f76
|
||||
urls=4fd6be
|
||||
|
||||
regular0=1b1d2b
|
||||
regular1=ff757f
|
||||
regular2=c3e88d
|
||||
regular3=ffc777
|
||||
regular4=82aaff
|
||||
regular5=c099ff
|
||||
regular6=86e1fc
|
||||
regular7=828bb8
|
||||
|
||||
bright0=444a73
|
||||
bright1=ff757f
|
||||
bright2=c3e88d
|
||||
bright3=ffc777
|
||||
bright4=82aaff
|
||||
bright5=c099ff
|
||||
bright6=86e1fc
|
||||
bright7=c8d3f5
|
||||
|
||||
16=ff966c
|
||||
17=c53b53
|
||||
@@ -0,0 +1,30 @@
|
||||
[cursor]
|
||||
color=E0CCAE 714f41
|
||||
|
||||
[colors]
|
||||
foreground=E0CCAE
|
||||
background=1a1b26
|
||||
selection-foreground=E0CCAE
|
||||
selection-background=714f41
|
||||
urls=c4a98f
|
||||
|
||||
regular0=15161e
|
||||
regular1=bf472c
|
||||
regular2=a4896f
|
||||
regular3=f2a766
|
||||
regular4=d47d49
|
||||
regular5=8a4b53
|
||||
regular6=a67458
|
||||
regular7=F2A766
|
||||
|
||||
bright0=392D2B
|
||||
bright1=bf472c
|
||||
bright2=a4896f
|
||||
bright3=f2a766
|
||||
bright4=d47d49
|
||||
bright5=8a4b53
|
||||
bright6=a67458
|
||||
bright7=E0CCAE
|
||||
|
||||
16=ff9e64
|
||||
17=df674c
|
||||
@@ -0,0 +1,30 @@
|
||||
[cursor]
|
||||
color=E0CCAE 6b442f
|
||||
|
||||
[colors]
|
||||
foreground=E0CCAE
|
||||
background=0f0908
|
||||
selection-foreground=E0CCAE
|
||||
selection-background=6b442f
|
||||
urls=c4a98f
|
||||
|
||||
regular0=0c0706
|
||||
regular1=bf472c
|
||||
regular2=a4896f
|
||||
regular3=f2a766
|
||||
regular4=d47d49
|
||||
regular5=8a4b53
|
||||
regular6=a67458
|
||||
regular7=F2A766
|
||||
|
||||
bright0=392D2B
|
||||
bright1=bf472c
|
||||
bright2=a4896f
|
||||
bright3=f2a766
|
||||
bright4=d47d49
|
||||
bright5=8a4b53
|
||||
bright6=a67458
|
||||
bright7=E0CCAE
|
||||
|
||||
16=ff9e64
|
||||
17=df674c
|
||||
@@ -0,0 +1,23 @@
|
||||
(
|
||||
selected_tab: Rgb(195,127,135), // magenta #c37f87
|
||||
command_fg: Rgb(215,150,135), // comment #d79687
|
||||
selection_bg: Rgb(234,225,224), // bg_highlight #eae1e0
|
||||
selection_fg: Rgb(145,101,76), // cyan #91654c
|
||||
cmdbar_bg: Rgb(225,226,231), // bg #e1e2e7
|
||||
cmdbar_extra_lines_bg: Rgb(225,226,231), // bg #e1e2e7
|
||||
disabled_fg: Rgb(215,150,135), // comment #d79687
|
||||
diff_line_add: Rgb(113,94,75), // green #715e4b
|
||||
diff_line_delete: Rgb(219,82,52), // red #db5234
|
||||
diff_file_added: Rgb(136,117,98), // green1 #887562
|
||||
diff_file_removed: Rgb(161,72,52), // red1 #a14834
|
||||
diff_file_moved: Rgb(155,97,105), // magenta2 #9b6169
|
||||
diff_file_modified: Rgb(155,102,53), // yellow #9b6635
|
||||
commit_hash: Rgb(195,127,135), // magenta #c37f87
|
||||
commit_time: Rgb(162,121,97), // teal #a27961
|
||||
commit_author: Rgb(113,94,75), // green #715e4b
|
||||
danger_fg: Rgb(219,82,52), // red #db5234
|
||||
push_gauge_bg: Rgb(225,226,231), // bg #e1e2e7
|
||||
push_gauge_fg: Rgb(108,98,82), // fg #6c6252
|
||||
tag_fg: Rgb(155,97,105), // magenta2 #9b6169
|
||||
branch_fg: Rgb(155,102,53), // yellow #9b6635
|
||||
)
|
||||
@@ -0,0 +1,23 @@
|
||||
(
|
||||
selected_tab: Rgb(192,153,255), // magenta #c099ff
|
||||
command_fg: Rgb(99,109,166), // comment #636da6
|
||||
selection_bg: Rgb(47,51,77), // bg_highlight #2f334d
|
||||
selection_fg: Rgb(134,225,252), // cyan #86e1fc
|
||||
cmdbar_bg: Rgb(34,36,54), // bg #222436
|
||||
cmdbar_extra_lines_bg: Rgb(34,36,54), // bg #222436
|
||||
disabled_fg: Rgb(99,109,166), // comment #636da6
|
||||
diff_line_add: Rgb(195,232,141), // green #c3e88d
|
||||
diff_line_delete: Rgb(255,117,127), // red #ff757f
|
||||
diff_file_added: Rgb(79,214,190), // green1 #4fd6be
|
||||
diff_file_removed: Rgb(197,59,83), // red1 #c53b53
|
||||
diff_file_moved: Rgb(255,0,124), // magenta2 #ff007c
|
||||
diff_file_modified: Rgb(255,199,119), // yellow #ffc777
|
||||
commit_hash: Rgb(192,153,255), // magenta #c099ff
|
||||
commit_time: Rgb(79,214,190), // teal #4fd6be
|
||||
commit_author: Rgb(195,232,141), // green #c3e88d
|
||||
danger_fg: Rgb(255,117,127), // red #ff757f
|
||||
push_gauge_bg: Rgb(34,36,54), // bg #222436
|
||||
push_gauge_fg: Rgb(200,211,245), // fg #c8d3f5
|
||||
tag_fg: Rgb(255,0,124), // magenta2 #ff007c
|
||||
branch_fg: Rgb(255,199,119), // yellow #ffc777
|
||||
)
|
||||
@@ -0,0 +1,23 @@
|
||||
(
|
||||
selected_tab: Rgb(138,75,83), // magenta #8a4b53
|
||||
command_fg: Rgb(107,64,53), // comment #6B4035
|
||||
selection_bg: Rgb(36,24,22), // bg_highlight #241816
|
||||
selection_fg: Rgb(166,116,88), // cyan #a67458
|
||||
cmdbar_bg: Rgb(26,27,38), // bg #1a1b26
|
||||
cmdbar_extra_lines_bg: Rgb(26,27,38), // bg #1a1b26
|
||||
disabled_fg: Rgb(107,64,53), // comment #6B4035
|
||||
diff_line_add: Rgb(164,137,111), // green #a4896f
|
||||
diff_line_delete: Rgb(191,71,44), // red #bf472c
|
||||
diff_file_added: Rgb(196,169,143), // green1 #c4a98f
|
||||
diff_file_removed: Rgb(223,103,76), // red1 #df674c
|
||||
diff_file_moved: Rgb(170,107,115), // magenta2 #aa6b73
|
||||
diff_file_modified: Rgb(242,167,102), // yellow #f2a766
|
||||
commit_hash: Rgb(138,75,83), // magenta #8a4b53
|
||||
commit_time: Rgb(198,148,120), // teal #c69478
|
||||
commit_author: Rgb(164,137,111), // green #a4896f
|
||||
danger_fg: Rgb(191,71,44), // red #bf472c
|
||||
push_gauge_bg: Rgb(26,27,38), // bg #1a1b26
|
||||
push_gauge_fg: Rgb(224,204,174), // fg #E0CCAE
|
||||
tag_fg: Rgb(170,107,115), // magenta2 #aa6b73
|
||||
branch_fg: Rgb(242,167,102), // yellow #f2a766
|
||||
)
|
||||
@@ -0,0 +1,23 @@
|
||||
(
|
||||
selected_tab: Rgb(138,75,83), // magenta #8a4b53
|
||||
command_fg: Rgb(107,64,53), // comment #6B4035
|
||||
selection_bg: Rgb(36,24,22), // bg_highlight #241816
|
||||
selection_fg: Rgb(166,116,88), // cyan #a67458
|
||||
cmdbar_bg: Rgb(15,9,8), // bg #0f0908
|
||||
cmdbar_extra_lines_bg: Rgb(15,9,8), // bg #0f0908
|
||||
disabled_fg: Rgb(107,64,53), // comment #6B4035
|
||||
diff_line_add: Rgb(164,137,111), // green #a4896f
|
||||
diff_line_delete: Rgb(191,71,44), // red #bf472c
|
||||
diff_file_added: Rgb(196,169,143), // green1 #c4a98f
|
||||
diff_file_removed: Rgb(223,103,76), // red1 #df674c
|
||||
diff_file_moved: Rgb(170,107,115), // magenta2 #aa6b73
|
||||
diff_file_modified: Rgb(242,167,102), // yellow #f2a766
|
||||
commit_hash: Rgb(138,75,83), // magenta #8a4b53
|
||||
commit_time: Rgb(198,148,120), // teal #c69478
|
||||
commit_author: Rgb(164,137,111), // green #a4896f
|
||||
danger_fg: Rgb(191,71,44), // red #bf472c
|
||||
push_gauge_bg: Rgb(15,9,8), // bg #0f0908
|
||||
push_gauge_fg: Rgb(224,204,174), // fg #E0CCAE
|
||||
tag_fg: Rgb(170,107,115), // magenta2 #aa6b73
|
||||
branch_fg: Rgb(242,167,102), // yellow #f2a766
|
||||
)
|
||||
@@ -0,0 +1,148 @@
|
||||
attribute = { fg = "#91654c" }
|
||||
comment = { fg = "#d79687", modifiers = ["italic"] }
|
||||
"comment.block.documentation" = { fg = "#9b6635" }
|
||||
constant = { fg = "#b15c00" }
|
||||
"constant.builtin" = { fg = "#db5234" }
|
||||
"constant.builtin.boolean" = { fg = "#b15c00" }
|
||||
"constant.character" = { fg = "#715e4b" }
|
||||
"constant.character.escape" = { fg = "#c37f87" }
|
||||
"constant.numeric" = { fg = "#b15c00" }
|
||||
"constant.numeric.float" = { fg = "#b15c00" }
|
||||
"constant.numeric.integer" = { fg = "#b15c00" }
|
||||
constructor = { fg = "#db5234" }
|
||||
"diagnostic.error" = { underline = { style = "curl" } }
|
||||
"diagnostic.hint" = { underline = { style = "curl" } }
|
||||
"diagnostic.info" = { underline = { style = "curl" } }
|
||||
"diagnostic.warning" = { underline = { style = "curl" } }
|
||||
"diff.delta" = { fg = "#dfa9ad" }
|
||||
"diff.delta.moved" = { fg = "#c77544" }
|
||||
"diff.minus" = { fg = "#db5234" }
|
||||
"diff.plus" = { fg = "#725f3e" }
|
||||
error = { fg = "#a14834" }
|
||||
function = { fg = "#c77544" }
|
||||
"function.builtin" = { fg = "#db5234" }
|
||||
"function.macro" = { fg = "#91654c" }
|
||||
"function.method" = { fg = "#c77544" }
|
||||
"function.special" = { fg = "#91654c" }
|
||||
hint = { fg = "#a27961" }
|
||||
info = { fg = "#725f3e" }
|
||||
keyword = { fg = "#876060", modifiers = ["italic"] }
|
||||
"keyword.control" = { fg = "#c37f87" }
|
||||
"keyword.control.conditional" = { fg = "#c37f87" }
|
||||
"keyword.control.exception" = { fg = "#c37f87" }
|
||||
"keyword.control.repeat" = { fg = "#c37f87" }
|
||||
"keyword.control.return" = { fg = "#876060", modifiers = ["italic"] }
|
||||
"keyword.directive" = { fg = "#91654c" }
|
||||
"keyword.function" = { fg = "#c37f87" }
|
||||
"keyword.operator" = { fg = "#c37f87" }
|
||||
label = { fg = "#c77544" }
|
||||
"markup.bold" = { modifiers = ["bold"] }
|
||||
"markup.heading" = { fg = "#c77544", modifiers = ["bold"] }
|
||||
"markup.heading.completion" = { bg = "#e9e9ec", fg = "#6c6252" }
|
||||
"markup.heading.hover" = { bg = "#d4a69f" }
|
||||
"markup.italic" = { modifiers = ["italic"] }
|
||||
"markup.link" = { fg = "#c77544", underline = { style = "line" } }
|
||||
"markup.link.label" = { fg = "#a27961" }
|
||||
"markup.link.text" = { fg = "#a27961" }
|
||||
"markup.link.url" = { underline = { style = "line" } }
|
||||
"markup.list" = { fg = "#b15c00", modifiers = ["bold"] }
|
||||
"markup.normal.completion" = { fg = "#d79687" }
|
||||
"markup.normal.hover" = { fg = "#9b6635" }
|
||||
"markup.raw" = { fg = "#a27961" }
|
||||
"markup.raw.block" = { fg = "#a27961" }
|
||||
"markup.raw.inline" = { bg = "#d1c4c2", fg = "#c77544" }
|
||||
"markup.strikethrough" = { modifiers = ["crossed_out"] }
|
||||
namespace = { fg = "#91654c" }
|
||||
operator = { fg = "#91654c" }
|
||||
special = { fg = "#db5234" }
|
||||
string = { fg = "#715e4b" }
|
||||
"string.regexp" = { fg = "#a47d6a" }
|
||||
"string.special" = { fg = "#db5234" }
|
||||
tag = { fg = "#c37f87" }
|
||||
type = { fg = "#db5234" }
|
||||
"type.builtin" = { fg = "#ec6a53" }
|
||||
"type.enum" = { fg = "#db5234" }
|
||||
"type.enum.variant" = { fg = "#b15c00" }
|
||||
"ui.background" = { bg = "bg" }
|
||||
"ui.cursor" = { bg = "#6c6252", fg = "#e1e2e7" }
|
||||
"ui.cursor.match" = { fg = "#b15c00", modifiers = ["bold"] }
|
||||
"ui.linenr" = { fg = "#d79687" }
|
||||
"ui.linenr.select" = { fg = "#91654c" }
|
||||
"ui.menu" = { bg = "#e9e9ec", fg = "#6c6252" }
|
||||
"ui.menu.scroll" = { bg = 14211292, fg = 14128775 }
|
||||
"ui.menu.selected" = { bg = "#d4a69f" }
|
||||
"ui.popup" = { bg = "#e9e9ec", fg = "#ec6a53" }
|
||||
"ui.selection" = { bg = "bg_highlight" }
|
||||
"ui.statusline" = { bg = "#e9e9ec", fg = "#9b6635" }
|
||||
"ui.statusline.inactive" = { bg = "#e9e9ec", fg = "#d79687" }
|
||||
"ui.statusline.normal" = { bg = "blue", fg = "black" }
|
||||
"ui.text" = { bg = "#e1e2e7", fg = "#6c6252" }
|
||||
"ui.text.focus" = { bg = "#c48c75" }
|
||||
"ui.text.inactive" = { fg = "#d79687", modifiers = ["italic"] }
|
||||
"ui.text.info" = { bg = "#e9e9ec", fg = "#6c6252" }
|
||||
"ui.virtual.inlay-hint" = { bg = "#d3cfd5", fg = "#a27961" }
|
||||
"ui.window" = { fg = "#e9e9ed", modifiers = ["bold"] }
|
||||
variable = { fg = "#6c6252" }
|
||||
"variable.builtin" = { fg = "#db5234" }
|
||||
"variable.other.member" = { fg = "#887562" }
|
||||
"variable.parameter" = { fg = "#9b6635" }
|
||||
warning = { fg = "#9b6635" }
|
||||
|
||||
[palette]
|
||||
bg = "#e1e2e7"
|
||||
bg_dark = "#e9e9ec"
|
||||
bg_float = "#e9e9ec"
|
||||
bg_highlight = "#eae1e0"
|
||||
bg_popup = "#e9e9ec"
|
||||
bg_search = "#aa6330"
|
||||
bg_sidebar = "#e9e9ec"
|
||||
bg_statusline = "#e9e9ec"
|
||||
bg_visual = "#c48c75"
|
||||
black = "#e9e9ed"
|
||||
blue = "#c77544"
|
||||
blue0 = "#aa6330"
|
||||
blue1 = "#db5234"
|
||||
blue2 = "#725f3e"
|
||||
blue5 = "#91654c"
|
||||
blue6 = "#a47d6a"
|
||||
blue7 = "#e88f6a"
|
||||
border = "#e9e9ed"
|
||||
border_highlight = "#ec6a53"
|
||||
comment = "#d79687"
|
||||
cyan = "#91654c"
|
||||
dark3 = "#dfa9ad"
|
||||
dark5 = "#91654c"
|
||||
"delta.add" = "#9b8a83"
|
||||
"delta.delete" = "#d5958f"
|
||||
"diff.add" = "#c5c2c7"
|
||||
"diff.change" = "#ded7dd"
|
||||
"diff.delete" = "#d9cace"
|
||||
"diff.text" = "#e88f6a"
|
||||
error = "#a14834"
|
||||
fg = "#6c6252"
|
||||
fg_dark = "#9b6635"
|
||||
fg_float = "#6c6252"
|
||||
fg_gutter = "#d79687"
|
||||
fg_sidebar = "#9b6635"
|
||||
"git.add" = "#725f3e"
|
||||
"git.change" = "#dfa9ad"
|
||||
"git.delete" = "#db5234"
|
||||
"git.ignore" = "#dfa9ad"
|
||||
"gitSigns.add" = "#847254"
|
||||
"gitSigns.change" = "#be7c82"
|
||||
"gitSigns.delete" = "#da6b52"
|
||||
green = "#715e4b"
|
||||
green1 = "#887562"
|
||||
green2 = "#806e5e"
|
||||
hint = "#a27961"
|
||||
info = "#725f3e"
|
||||
magenta = "#c37f87"
|
||||
magenta2 = "#9b6169"
|
||||
orange = "#b15c00"
|
||||
purple = "#876060"
|
||||
red = "#db5234"
|
||||
red1 = "#a14834"
|
||||
teal = "#a27961"
|
||||
terminal_black = "#d1c4c2"
|
||||
warning = "#9b6635"
|
||||
yellow = "#9b6635"
|
||||
@@ -0,0 +1,148 @@
|
||||
attribute = { fg = "#86e1fc" }
|
||||
comment = { fg = "#636da6", modifiers = ["italic"] }
|
||||
"comment.block.documentation" = { fg = "#ffc777" }
|
||||
constant = { fg = "#ff966c" }
|
||||
"constant.builtin" = { fg = "#65bcff" }
|
||||
"constant.builtin.boolean" = { fg = "#ff966c" }
|
||||
"constant.character" = { fg = "#c3e88d" }
|
||||
"constant.character.escape" = { fg = "#c099ff" }
|
||||
"constant.numeric" = { fg = "#ff966c" }
|
||||
"constant.numeric.float" = { fg = "#ff966c" }
|
||||
"constant.numeric.integer" = { fg = "#ff966c" }
|
||||
constructor = { fg = "#65bcff" }
|
||||
"diagnostic.error" = { underline = { style = "curl" } }
|
||||
"diagnostic.hint" = { underline = { style = "curl" } }
|
||||
"diagnostic.info" = { underline = { style = "curl" } }
|
||||
"diagnostic.warning" = { underline = { style = "curl" } }
|
||||
"diff.delta" = { fg = "#7ca1f2" }
|
||||
"diff.delta.moved" = { fg = "#82aaff" }
|
||||
"diff.minus" = { fg = "#e26a75" }
|
||||
"diff.plus" = { fg = "#b8db87" }
|
||||
error = { fg = "#c53b53" }
|
||||
function = { fg = "#82aaff" }
|
||||
"function.builtin" = { fg = "#65bcff" }
|
||||
"function.macro" = { fg = "#86e1fc" }
|
||||
"function.method" = { fg = "#82aaff" }
|
||||
"function.special" = { fg = "#86e1fc" }
|
||||
hint = { fg = "#4fd6be" }
|
||||
info = { fg = "#0db9d7" }
|
||||
keyword = { fg = "#fca7ea", modifiers = ["italic"] }
|
||||
"keyword.control" = { fg = "#c099ff" }
|
||||
"keyword.control.conditional" = { fg = "#c099ff" }
|
||||
"keyword.control.exception" = { fg = "#c099ff" }
|
||||
"keyword.control.repeat" = { fg = "#c099ff" }
|
||||
"keyword.control.return" = { fg = "#fca7ea", modifiers = ["italic"] }
|
||||
"keyword.directive" = { fg = "#86e1fc" }
|
||||
"keyword.function" = { fg = "#c099ff" }
|
||||
"keyword.operator" = { fg = "#c099ff" }
|
||||
label = { fg = "#82aaff" }
|
||||
"markup.bold" = { modifiers = ["bold"] }
|
||||
"markup.heading" = { fg = "#82aaff", modifiers = ["bold"] }
|
||||
"markup.heading.completion" = { bg = "#1e2030", fg = "#c8d3f5" }
|
||||
"markup.heading.hover" = { bg = "#363c58" }
|
||||
"markup.italic" = { modifiers = ["italic"] }
|
||||
"markup.link" = { fg = "#82aaff", underline = { style = "line" } }
|
||||
"markup.link.label" = { fg = "#4fd6be" }
|
||||
"markup.link.text" = { fg = "#4fd6be" }
|
||||
"markup.link.url" = { underline = { style = "line" } }
|
||||
"markup.list" = { fg = "#ff966c", modifiers = ["bold"] }
|
||||
"markup.normal.completion" = { fg = "#636da6" }
|
||||
"markup.normal.hover" = { fg = "#828bb8" }
|
||||
"markup.raw" = { fg = "#4fd6be" }
|
||||
"markup.raw.block" = { fg = "#4fd6be" }
|
||||
"markup.raw.inline" = { bg = "#444a73", fg = "#82aaff" }
|
||||
"markup.strikethrough" = { modifiers = ["crossed_out"] }
|
||||
namespace = { fg = "#86e1fc" }
|
||||
operator = { fg = "#89ddff" }
|
||||
special = { fg = "#65bcff" }
|
||||
string = { fg = "#c3e88d" }
|
||||
"string.regexp" = { fg = "#b4f9f8" }
|
||||
"string.special" = { fg = "#65bcff" }
|
||||
tag = { fg = "#c099ff" }
|
||||
type = { fg = "#65bcff" }
|
||||
"type.builtin" = { fg = "#589ed7" }
|
||||
"type.enum" = { fg = "#65bcff" }
|
||||
"type.enum.variant" = { fg = "#ff966c" }
|
||||
"ui.background" = { bg = "bg" }
|
||||
"ui.cursor" = { bg = "#c8d3f5", fg = "#222436" }
|
||||
"ui.cursor.match" = { fg = "#ff966c", modifiers = ["bold"] }
|
||||
"ui.linenr" = { fg = "#3b4261" }
|
||||
"ui.linenr.select" = { fg = "#737aa2" }
|
||||
"ui.menu" = { bg = "#1e2030", fg = "#c8d3f5" }
|
||||
"ui.menu.scroll" = { bg = 2698042, fg = 3883617 }
|
||||
"ui.menu.selected" = { bg = "#363c58" }
|
||||
"ui.popup" = { bg = "#1e2030", fg = "#589ed7" }
|
||||
"ui.selection" = { bg = "bg_highlight" }
|
||||
"ui.statusline" = { bg = "#1e2030", fg = "#828bb8" }
|
||||
"ui.statusline.inactive" = { bg = "#1e2030", fg = "#3b4261" }
|
||||
"ui.statusline.normal" = { bg = "blue", fg = "black" }
|
||||
"ui.text" = { bg = "#222436", fg = "#c8d3f5" }
|
||||
"ui.text.focus" = { bg = "#2d3f76" }
|
||||
"ui.text.inactive" = { fg = "#636da6", modifiers = ["italic"] }
|
||||
"ui.text.info" = { bg = "#1e2030", fg = "#c8d3f5" }
|
||||
"ui.virtual.inlay-hint" = { bg = "#273644", fg = "#4fd6be" }
|
||||
"ui.window" = { fg = "#1b1d2b", modifiers = ["bold"] }
|
||||
variable = { fg = "#c8d3f5" }
|
||||
"variable.builtin" = { fg = "#ff757f" }
|
||||
"variable.other.member" = { fg = "#4fd6be" }
|
||||
"variable.parameter" = { fg = "#ffc777" }
|
||||
warning = { fg = "#ffc777" }
|
||||
|
||||
[palette]
|
||||
bg = "#222436"
|
||||
bg_dark = "#1e2030"
|
||||
bg_float = "#1e2030"
|
||||
bg_highlight = "#2f334d"
|
||||
bg_popup = "#1e2030"
|
||||
bg_search = "#3e68d7"
|
||||
bg_sidebar = "#1e2030"
|
||||
bg_statusline = "#1e2030"
|
||||
bg_visual = "#2d3f76"
|
||||
black = "#1b1d2b"
|
||||
blue = "#82aaff"
|
||||
blue0 = "#3e68d7"
|
||||
blue1 = "#65bcff"
|
||||
blue2 = "#0db9d7"
|
||||
blue5 = "#89ddff"
|
||||
blue6 = "#b4f9f8"
|
||||
blue7 = "#394b70"
|
||||
border = "#1b1d2b"
|
||||
border_highlight = "#589ed7"
|
||||
comment = "#636da6"
|
||||
cyan = "#86e1fc"
|
||||
dark3 = "#545c7e"
|
||||
dark5 = "#737aa2"
|
||||
"delta.add" = "#305f6f"
|
||||
"delta.delete" = "#6b2e43"
|
||||
"diff.add" = "#273849"
|
||||
"diff.change" = "#252a3f"
|
||||
"diff.delete" = "#3a273a"
|
||||
"diff.text" = "#394b70"
|
||||
error = "#c53b53"
|
||||
fg = "#c8d3f5"
|
||||
fg_dark = "#828bb8"
|
||||
fg_float = "#c8d3f5"
|
||||
fg_gutter = "#3b4261"
|
||||
fg_sidebar = "#828bb8"
|
||||
"git.add" = "#b8db87"
|
||||
"git.change" = "#7ca1f2"
|
||||
"git.delete" = "#e26a75"
|
||||
"git.ignore" = "#545c7e"
|
||||
"gitSigns.add" = "#627259"
|
||||
"gitSigns.change" = "#485a86"
|
||||
"gitSigns.delete" = "#b55a67"
|
||||
green = "#c3e88d"
|
||||
green1 = "#4fd6be"
|
||||
green2 = "#41a6b5"
|
||||
hint = "#4fd6be"
|
||||
info = "#0db9d7"
|
||||
magenta = "#c099ff"
|
||||
magenta2 = "#ff007c"
|
||||
orange = "#ff966c"
|
||||
purple = "#fca7ea"
|
||||
red = "#ff757f"
|
||||
red1 = "#c53b53"
|
||||
teal = "#4fd6be"
|
||||
terminal_black = "#444a73"
|
||||
warning = "#ffc777"
|
||||
yellow = "#ffc777"
|
||||
@@ -0,0 +1,148 @@
|
||||
attribute = { fg = "#a67458" }
|
||||
comment = { fg = "#6b4035", modifiers = ["italic"] }
|
||||
"comment.block.documentation" = { fg = "#f2a766" }
|
||||
constant = { fg = "#ff9e64" }
|
||||
"constant.builtin" = { fg = "#bf472c" }
|
||||
"constant.builtin.boolean" = { fg = "#ff9e64" }
|
||||
"constant.character" = { fg = "#a4896f" }
|
||||
"constant.character.escape" = { fg = "#8a4b53" }
|
||||
"constant.numeric" = { fg = "#ff9e64" }
|
||||
"constant.numeric.float" = { fg = "#ff9e64" }
|
||||
"constant.numeric.integer" = { fg = "#ff9e64" }
|
||||
constructor = { fg = "#bf472c" }
|
||||
"diagnostic.error" = { underline = { style = "curl" } }
|
||||
"diagnostic.hint" = { underline = { style = "curl" } }
|
||||
"diagnostic.info" = { underline = { style = "curl" } }
|
||||
"diagnostic.warning" = { underline = { style = "curl" } }
|
||||
"diff.delta" = { fg = "#66292f" }
|
||||
"diff.delta.moved" = { fg = "#d47d49" }
|
||||
"diff.minus" = { fg = "#bf472c" }
|
||||
"diff.plus" = { fg = "#a4895c" }
|
||||
error = { fg = "#df674c" }
|
||||
function = { fg = "#d47d49" }
|
||||
"function.builtin" = { fg = "#bf472c" }
|
||||
"function.macro" = { fg = "#a67458" }
|
||||
"function.method" = { fg = "#d47d49" }
|
||||
"function.special" = { fg = "#a67458" }
|
||||
hint = { fg = "#c69478" }
|
||||
info = { fg = "#a4895c" }
|
||||
keyword = { fg = "#a47a7a", modifiers = ["italic"] }
|
||||
"keyword.control" = { fg = "#8a4b53" }
|
||||
"keyword.control.conditional" = { fg = "#8a4b53" }
|
||||
"keyword.control.exception" = { fg = "#8a4b53" }
|
||||
"keyword.control.repeat" = { fg = "#8a4b53" }
|
||||
"keyword.control.return" = { fg = "#a47a7a", modifiers = ["italic"] }
|
||||
"keyword.directive" = { fg = "#a67458" }
|
||||
"keyword.function" = { fg = "#8a4b53" }
|
||||
"keyword.operator" = { fg = "#8a4b53" }
|
||||
label = { fg = "#d47d49" }
|
||||
"markup.bold" = { modifiers = ["bold"] }
|
||||
"markup.heading" = { fg = "#d47d49", modifiers = ["bold"] }
|
||||
"markup.heading.completion" = { bg = "#16161e", fg = "#e0ccae" }
|
||||
"markup.heading.hover" = { bg = "#5b3932" }
|
||||
"markup.italic" = { modifiers = ["italic"] }
|
||||
"markup.link" = { fg = "#d47d49", underline = { style = "line" } }
|
||||
"markup.link.label" = { fg = "#c69478" }
|
||||
"markup.link.text" = { fg = "#c69478" }
|
||||
"markup.link.url" = { underline = { style = "line" } }
|
||||
"markup.list" = { fg = "#ff9e64", modifiers = ["bold"] }
|
||||
"markup.normal.completion" = { fg = "#6b4035" }
|
||||
"markup.normal.hover" = { fg = "#f2a766" }
|
||||
"markup.raw" = { fg = "#c69478" }
|
||||
"markup.raw.block" = { fg = "#c69478" }
|
||||
"markup.raw.inline" = { bg = "#392d2b", fg = "#d47d49" }
|
||||
"markup.strikethrough" = { modifiers = ["crossed_out"] }
|
||||
namespace = { fg = "#a67458" }
|
||||
operator = { fg = "#a67458" }
|
||||
special = { fg = "#bf472c" }
|
||||
string = { fg = "#a4896f" }
|
||||
"string.regexp" = { fg = "#bc907b" }
|
||||
"string.special" = { fg = "#bf472c" }
|
||||
tag = { fg = "#8a4b53" }
|
||||
type = { fg = "#bf472c" }
|
||||
"type.builtin" = { fg = "#9e3e2b" }
|
||||
"type.enum" = { fg = "#bf472c" }
|
||||
"type.enum.variant" = { fg = "#ff9e64" }
|
||||
"ui.background" = { bg = "bg" }
|
||||
"ui.cursor" = { bg = "#e0ccae", fg = "#1a1b26" }
|
||||
"ui.cursor.match" = { fg = "#ff9e64", modifiers = ["bold"] }
|
||||
"ui.linenr" = { fg = "#6b4035" }
|
||||
"ui.linenr.select" = { fg = "#a67458" }
|
||||
"ui.menu" = { bg = "#16161e", fg = "#e0ccae" }
|
||||
"ui.menu.scroll" = { bg = 2236969, fg = 7028789 }
|
||||
"ui.menu.selected" = { bg = "#5b3932" }
|
||||
"ui.popup" = { bg = "#16161e", fg = "#9e3e2b" }
|
||||
"ui.selection" = { bg = "bg_highlight" }
|
||||
"ui.statusline" = { bg = "#16161e", fg = "#f2a766" }
|
||||
"ui.statusline.inactive" = { bg = "#16161e", fg = "#6b4035" }
|
||||
"ui.statusline.normal" = { bg = "blue", fg = "black" }
|
||||
"ui.text" = { bg = "#1a1b26", fg = "#e0ccae" }
|
||||
"ui.text.focus" = { bg = "#714f41" }
|
||||
"ui.text.inactive" = { fg = "#6b4035", modifiers = ["italic"] }
|
||||
"ui.text.info" = { bg = "#16161e", fg = "#e0ccae" }
|
||||
"ui.virtual.inlay-hint" = { bg = "#2b272e", fg = "#c69478" }
|
||||
"ui.window" = { fg = "#15161e", modifiers = ["bold"] }
|
||||
variable = { fg = "#e0ccae" }
|
||||
"variable.builtin" = { fg = "#bf472c" }
|
||||
"variable.other.member" = { fg = "#c4a98f" }
|
||||
"variable.parameter" = { fg = "#f2a766" }
|
||||
warning = { fg = "#f2a766" }
|
||||
|
||||
[palette]
|
||||
bg = "#1a1b26"
|
||||
bg_dark = "#16161e"
|
||||
bg_float = "#16161e"
|
||||
bg_highlight = "#241816"
|
||||
bg_popup = "#16161e"
|
||||
bg_search = "#f49d69"
|
||||
bg_sidebar = "#16161e"
|
||||
bg_statusline = "#16161e"
|
||||
bg_visual = "#714f41"
|
||||
black = "#15161e"
|
||||
blue = "#d47d49"
|
||||
blue0 = "#f49d69"
|
||||
blue1 = "#BF472C"
|
||||
blue2 = "#A4895C"
|
||||
blue5 = "#a67458"
|
||||
blue6 = "#BC907B"
|
||||
blue7 = "#703F29"
|
||||
border = "#15161e"
|
||||
border_highlight = "#9e3e2b"
|
||||
comment = "#6B4035"
|
||||
cyan = "#a67458"
|
||||
dark3 = "#66292F"
|
||||
dark5 = "#A67458"
|
||||
"delta.add" = "#6b5f5a"
|
||||
"delta.delete" = "#733d37"
|
||||
"diff.add" = "#353237"
|
||||
"diff.change" = "#272026"
|
||||
"diff.delete" = "#38262c"
|
||||
"diff.text" = "#703F29"
|
||||
error = "#df674c"
|
||||
fg = "#E0CCAE"
|
||||
fg_dark = "#F2A766"
|
||||
fg_float = "#E0CCAE"
|
||||
fg_gutter = "#6B4035"
|
||||
fg_sidebar = "#F2A766"
|
||||
"git.add" = "#A4895C"
|
||||
"git.change" = "#66292F"
|
||||
"git.delete" = "#BF472C"
|
||||
"git.ignore" = "#66292F"
|
||||
"gitSigns.add" = "#CAAF82"
|
||||
"gitSigns.change" = "#8C4F55"
|
||||
"gitSigns.delete" = "#E26F55"
|
||||
green = "#a4896f"
|
||||
green1 = "#c4a98f"
|
||||
green2 = "#ceb399"
|
||||
hint = "#c69478"
|
||||
info = "#A4895C"
|
||||
magenta = "#8a4b53"
|
||||
magenta2 = "#aa6b73"
|
||||
orange = "#ff9e64"
|
||||
purple = "#a47a7a"
|
||||
red = "#bf472c"
|
||||
red1 = "#df674c"
|
||||
teal = "#c69478"
|
||||
terminal_black = "#392D2B"
|
||||
warning = "#f2a766"
|
||||
yellow = "#f2a766"
|
||||
@@ -0,0 +1,148 @@
|
||||
attribute = { fg = "#a67458" }
|
||||
comment = { fg = "#6b4035", modifiers = ["italic"] }
|
||||
"comment.block.documentation" = { fg = "#f2a766" }
|
||||
constant = { fg = "#ff9e64" }
|
||||
"constant.builtin" = { fg = "#bf472c" }
|
||||
"constant.builtin.boolean" = { fg = "#ff9e64" }
|
||||
"constant.character" = { fg = "#a4896f" }
|
||||
"constant.character.escape" = { fg = "#8a4b53" }
|
||||
"constant.numeric" = { fg = "#ff9e64" }
|
||||
"constant.numeric.float" = { fg = "#ff9e64" }
|
||||
"constant.numeric.integer" = { fg = "#ff9e64" }
|
||||
constructor = { fg = "#bf472c" }
|
||||
"diagnostic.error" = { underline = { style = "curl" } }
|
||||
"diagnostic.hint" = { underline = { style = "curl" } }
|
||||
"diagnostic.info" = { underline = { style = "curl" } }
|
||||
"diagnostic.warning" = { underline = { style = "curl" } }
|
||||
"diff.delta" = { fg = "#66292f" }
|
||||
"diff.delta.moved" = { fg = "#d47d49" }
|
||||
"diff.minus" = { fg = "#bf472c" }
|
||||
"diff.plus" = { fg = "#a4895c" }
|
||||
error = { fg = "#df674c" }
|
||||
function = { fg = "#d47d49" }
|
||||
"function.builtin" = { fg = "#bf472c" }
|
||||
"function.macro" = { fg = "#a67458" }
|
||||
"function.method" = { fg = "#d47d49" }
|
||||
"function.special" = { fg = "#a67458" }
|
||||
hint = { fg = "#c69478" }
|
||||
info = { fg = "#a4895c" }
|
||||
keyword = { fg = "#a47a7a", modifiers = ["italic"] }
|
||||
"keyword.control" = { fg = "#8a4b53" }
|
||||
"keyword.control.conditional" = { fg = "#8a4b53" }
|
||||
"keyword.control.exception" = { fg = "#8a4b53" }
|
||||
"keyword.control.repeat" = { fg = "#8a4b53" }
|
||||
"keyword.control.return" = { fg = "#a47a7a", modifiers = ["italic"] }
|
||||
"keyword.directive" = { fg = "#a67458" }
|
||||
"keyword.function" = { fg = "#8a4b53" }
|
||||
"keyword.operator" = { fg = "#8a4b53" }
|
||||
label = { fg = "#d47d49" }
|
||||
"markup.bold" = { modifiers = ["bold"] }
|
||||
"markup.heading" = { fg = "#d47d49", modifiers = ["bold"] }
|
||||
"markup.heading.completion" = { bg = "#1f1311", fg = "#e0ccae" }
|
||||
"markup.heading.hover" = { bg = "#59352c" }
|
||||
"markup.italic" = { modifiers = ["italic"] }
|
||||
"markup.link" = { fg = "#d47d49", underline = { style = "line" } }
|
||||
"markup.link.label" = { fg = "#c69478" }
|
||||
"markup.link.text" = { fg = "#c69478" }
|
||||
"markup.link.url" = { underline = { style = "line" } }
|
||||
"markup.list" = { fg = "#ff9e64", modifiers = ["bold"] }
|
||||
"markup.normal.completion" = { fg = "#6b4035" }
|
||||
"markup.normal.hover" = { fg = "#f2a766" }
|
||||
"markup.raw" = { fg = "#c69478" }
|
||||
"markup.raw.block" = { fg = "#c69478" }
|
||||
"markup.raw.inline" = { bg = "#392d2b", fg = "#d47d49" }
|
||||
"markup.strikethrough" = { modifiers = ["crossed_out"] }
|
||||
namespace = { fg = "#a67458" }
|
||||
operator = { fg = "#a67458" }
|
||||
special = { fg = "#bf472c" }
|
||||
string = { fg = "#a4896f" }
|
||||
"string.regexp" = { fg = "#bc907b" }
|
||||
"string.special" = { fg = "#bf472c" }
|
||||
tag = { fg = "#8a4b53" }
|
||||
type = { fg = "#bf472c" }
|
||||
"type.builtin" = { fg = "#9c3b25" }
|
||||
"type.enum" = { fg = "#bf472c" }
|
||||
"type.enum.variant" = { fg = "#ff9e64" }
|
||||
"ui.background" = { bg = "bg" }
|
||||
"ui.cursor" = { bg = "#e0ccae", fg = "#0f0908" }
|
||||
"ui.cursor.match" = { fg = "#ff9e64", modifiers = ["bold"] }
|
||||
"ui.linenr" = { fg = "#6b4035" }
|
||||
"ui.linenr.select" = { fg = "#a67458" }
|
||||
"ui.menu" = { bg = "#1f1311", fg = "#e0ccae" }
|
||||
"ui.menu.scroll" = { bg = 2760477, fg = 7028789 }
|
||||
"ui.menu.selected" = { bg = "#59352c" }
|
||||
"ui.popup" = { bg = "#1f1311", fg = "#9c3b25" }
|
||||
"ui.selection" = { bg = "bg_highlight" }
|
||||
"ui.statusline" = { bg = "#1f1311", fg = "#f2a766" }
|
||||
"ui.statusline.inactive" = { bg = "#1f1311", fg = "#6b4035" }
|
||||
"ui.statusline.normal" = { bg = "blue", fg = "black" }
|
||||
"ui.text" = { bg = "#0f0908", fg = "#e0ccae" }
|
||||
"ui.text.focus" = { bg = "#6b442f" }
|
||||
"ui.text.inactive" = { fg = "#6b4035", modifiers = ["italic"] }
|
||||
"ui.text.info" = { bg = "#1f1311", fg = "#e0ccae" }
|
||||
"ui.virtual.inlay-hint" = { bg = "#211713", fg = "#c69478" }
|
||||
"ui.window" = { fg = "#0c0706", modifiers = ["bold"] }
|
||||
variable = { fg = "#e0ccae" }
|
||||
"variable.builtin" = { fg = "#bf472c" }
|
||||
"variable.other.member" = { fg = "#c4a98f" }
|
||||
"variable.parameter" = { fg = "#f2a766" }
|
||||
warning = { fg = "#f2a766" }
|
||||
|
||||
[palette]
|
||||
bg = "#0f0908"
|
||||
bg_dark = "#1f1311"
|
||||
bg_float = "#1f1311"
|
||||
bg_highlight = "#241816"
|
||||
bg_popup = "#1f1311"
|
||||
bg_search = "#f49d69"
|
||||
bg_sidebar = "#1f1311"
|
||||
bg_statusline = "#1f1311"
|
||||
bg_visual = "#6b442f"
|
||||
black = "#0c0706"
|
||||
blue = "#d47d49"
|
||||
blue0 = "#f49d69"
|
||||
blue1 = "#BF472C"
|
||||
blue2 = "#A4895C"
|
||||
blue5 = "#a67458"
|
||||
blue6 = "#BC907B"
|
||||
blue7 = "#703F29"
|
||||
border = "#0c0706"
|
||||
border_highlight = "#9c3b25"
|
||||
comment = "#6B4035"
|
||||
cyan = "#a67458"
|
||||
dark3 = "#66292F"
|
||||
dark5 = "#A67458"
|
||||
"delta.add" = "#655649"
|
||||
"delta.delete" = "#6d3327"
|
||||
"diff.add" = "#2c231e"
|
||||
"diff.change" = "#1e110d"
|
||||
"diff.delete" = "#2e1712"
|
||||
"diff.text" = "#703F29"
|
||||
error = "#df674c"
|
||||
fg = "#E0CCAE"
|
||||
fg_dark = "#F2A766"
|
||||
fg_float = "#E0CCAE"
|
||||
fg_gutter = "#6B4035"
|
||||
fg_sidebar = "#F2A766"
|
||||
"git.add" = "#A4895C"
|
||||
"git.change" = "#66292F"
|
||||
"git.delete" = "#BF472C"
|
||||
"git.ignore" = "#66292F"
|
||||
"gitSigns.add" = "#CAAF82"
|
||||
"gitSigns.change" = "#8C4F55"
|
||||
"gitSigns.delete" = "#E26F55"
|
||||
green = "#a4896f"
|
||||
green1 = "#c4a98f"
|
||||
green2 = "#ceb399"
|
||||
hint = "#c69478"
|
||||
info = "#A4895C"
|
||||
magenta = "#8a4b53"
|
||||
magenta2 = "#aa6b73"
|
||||
orange = "#ff9e64"
|
||||
purple = "#a47a7a"
|
||||
red = "#bf472c"
|
||||
red1 = "#df674c"
|
||||
teal = "#c69478"
|
||||
terminal_black = "#392D2B"
|
||||
warning = "#f2a766"
|
||||
yellow = "#f2a766"
|
||||
@@ -0,0 +1,344 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>Ansi 0 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.9294117647058824</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.9137254901960784</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.9137254901960784</real>
|
||||
</dict>
|
||||
<key>Ansi 1 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.2039215686274510</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.3215686274509804</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.8588235294117647</real>
|
||||
</dict>
|
||||
<key>Ansi 10 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.2941176470588235</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.3686274509803922</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.4431372549019608</real>
|
||||
</dict>
|
||||
<key>Ansi 11 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.2078431372549020</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.4000000000000000</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.6078431372549019</real>
|
||||
</dict>
|
||||
<key>Ansi 12 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.2666666666666667</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.4588235294117647</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.7803921568627451</real>
|
||||
</dict>
|
||||
<key>Ansi 13 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.5294117647058824</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.4980392156862745</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.7647058823529411</real>
|
||||
</dict>
|
||||
<key>Ansi 14 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.2980392156862745</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.3960784313725490</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.5686274509803921</real>
|
||||
</dict>
|
||||
<key>Ansi 15 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.3215686274509804</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.3843137254901961</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.4235294117647059</real>
|
||||
</dict>
|
||||
<key>Ansi 2 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.2941176470588235</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.3686274509803922</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.4431372549019608</real>
|
||||
</dict>
|
||||
<key>Ansi 3 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.2078431372549020</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.4000000000000000</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.6078431372549019</real>
|
||||
</dict>
|
||||
<key>Ansi 4 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.2666666666666667</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.4588235294117647</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.7803921568627451</real>
|
||||
</dict>
|
||||
<key>Ansi 5 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.5294117647058824</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.4980392156862745</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.7647058823529411</real>
|
||||
</dict>
|
||||
<key>Ansi 6 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.2980392156862745</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.3960784313725490</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.5686274509803921</real>
|
||||
</dict>
|
||||
<key>Ansi 7 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.2078431372549020</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.4000000000000000</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.6078431372549019</real>
|
||||
</dict>
|
||||
<key>Ansi 8 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.7607843137254902</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.7686274509803922</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.8196078431372549</real>
|
||||
</dict>
|
||||
<key>Ansi 9 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.2039215686274510</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.3215686274509804</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.8588235294117647</real>
|
||||
</dict>
|
||||
<key>Background Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.9058823529411765</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.8862745098039215</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.8823529411764706</real>
|
||||
</dict>
|
||||
<key>Badge Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>0.5</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.0</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.1491314172744751</real>
|
||||
<key>Red Component</key>
|
||||
<real>1</real>
|
||||
</dict>
|
||||
<key>Bold Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.3803921568627451</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.4745098039215686</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.6352941176470588</real>
|
||||
</dict>
|
||||
<key>Cursor Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.3215686274509804</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.3843137254901961</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.4235294117647059</real>
|
||||
</dict>
|
||||
<key>Cursor Guide Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>0.25</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.3215686274509804</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.3843137254901961</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.4235294117647059</real>
|
||||
</dict>
|
||||
<key>Cursor Text Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.9058823529411765</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.8862745098039215</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.8823529411764706</real>
|
||||
</dict>
|
||||
<key>Foreground Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.3215686274509804</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.3843137254901961</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.4235294117647059</real>
|
||||
</dict>
|
||||
<key>Link Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.3843137254901961</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.4588235294117647</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.5333333333333333</real>
|
||||
</dict>
|
||||
<key>Selected Text Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.3215686274509804</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.3843137254901961</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.4235294117647059</real>
|
||||
</dict>
|
||||
<key>Selection Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.4588235294117647</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.5490196078431373</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.7686274509803922</real>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -0,0 +1,344 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>Ansi 0 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.1686274509803922</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.1137254901960784</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.1058823529411765</real>
|
||||
</dict>
|
||||
<key>Ansi 1 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.4980392156862745</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.4588235294117647</real>
|
||||
<key>Red Component</key>
|
||||
<real>1.0000000000000000</real>
|
||||
</dict>
|
||||
<key>Ansi 10 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.5529411764705883</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.9098039215686274</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.7647058823529411</real>
|
||||
</dict>
|
||||
<key>Ansi 11 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.4666666666666667</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.7803921568627451</real>
|
||||
<key>Red Component</key>
|
||||
<real>1.0000000000000000</real>
|
||||
</dict>
|
||||
<key>Ansi 12 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>1.0000000000000000</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.6666666666666666</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.5098039215686274</real>
|
||||
</dict>
|
||||
<key>Ansi 13 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>1.0000000000000000</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.6000000000000000</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.7529411764705882</real>
|
||||
</dict>
|
||||
<key>Ansi 14 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.9882352941176471</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.8823529411764706</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.5254901960784314</real>
|
||||
</dict>
|
||||
<key>Ansi 15 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.9607843137254902</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.8274509803921568</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.7843137254901961</real>
|
||||
</dict>
|
||||
<key>Ansi 2 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.5529411764705883</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.9098039215686274</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.7647058823529411</real>
|
||||
</dict>
|
||||
<key>Ansi 3 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.4666666666666667</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.7803921568627451</real>
|
||||
<key>Red Component</key>
|
||||
<real>1.0000000000000000</real>
|
||||
</dict>
|
||||
<key>Ansi 4 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>1.0000000000000000</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.6666666666666666</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.5098039215686274</real>
|
||||
</dict>
|
||||
<key>Ansi 5 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>1.0000000000000000</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.6000000000000000</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.7529411764705882</real>
|
||||
</dict>
|
||||
<key>Ansi 6 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.9882352941176471</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.8823529411764706</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.5254901960784314</real>
|
||||
</dict>
|
||||
<key>Ansi 7 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.7215686274509804</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.5450980392156862</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.5098039215686274</real>
|
||||
</dict>
|
||||
<key>Ansi 8 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.4509803921568628</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.2901960784313726</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.2666666666666667</real>
|
||||
</dict>
|
||||
<key>Ansi 9 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.4980392156862745</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.4588235294117647</real>
|
||||
<key>Red Component</key>
|
||||
<real>1.0000000000000000</real>
|
||||
</dict>
|
||||
<key>Background Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.2117647058823529</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.1411764705882353</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.1333333333333333</real>
|
||||
</dict>
|
||||
<key>Badge Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>0.5</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.0</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.1491314172744751</real>
|
||||
<key>Red Component</key>
|
||||
<real>1</real>
|
||||
</dict>
|
||||
<key>Bold Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.7450980392156863</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.8392156862745098</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.3098039215686275</real>
|
||||
</dict>
|
||||
<key>Cursor Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.9607843137254902</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.8274509803921568</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.7843137254901961</real>
|
||||
</dict>
|
||||
<key>Cursor Guide Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>0.25</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.9607843137254902</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.8274509803921568</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.7843137254901961</real>
|
||||
</dict>
|
||||
<key>Cursor Text Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.2117647058823529</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.1411764705882353</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.1333333333333333</real>
|
||||
</dict>
|
||||
<key>Foreground Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.9607843137254902</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.8274509803921568</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.7843137254901961</real>
|
||||
</dict>
|
||||
<key>Link Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.7450980392156863</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.8392156862745098</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.3098039215686275</real>
|
||||
</dict>
|
||||
<key>Selected Text Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.9607843137254902</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.8274509803921568</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.7843137254901961</real>
|
||||
</dict>
|
||||
<key>Selection Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.4627450980392157</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.2470588235294118</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.1764705882352941</real>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -0,0 +1,344 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>Ansi 0 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.1176470588235294</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.0862745098039216</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.0823529411764706</real>
|
||||
</dict>
|
||||
<key>Ansi 1 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.1725490196078431</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.2784313725490196</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.7490196078431373</real>
|
||||
</dict>
|
||||
<key>Ansi 10 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.4352941176470588</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.5372549019607843</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.6431372549019608</real>
|
||||
</dict>
|
||||
<key>Ansi 11 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.4000000000000000</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.6549019607843137</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.9490196078431372</real>
|
||||
</dict>
|
||||
<key>Ansi 12 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.2862745098039216</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.4901960784313725</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.8313725490196079</real>
|
||||
</dict>
|
||||
<key>Ansi 13 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.3254901960784314</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.2941176470588235</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.5411764705882353</real>
|
||||
</dict>
|
||||
<key>Ansi 14 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.3450980392156863</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.4549019607843137</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.6509803921568628</real>
|
||||
</dict>
|
||||
<key>Ansi 15 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.6823529411764706</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.8000000000000000</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.8784313725490196</real>
|
||||
</dict>
|
||||
<key>Ansi 2 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.4352941176470588</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.5372549019607843</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.6431372549019608</real>
|
||||
</dict>
|
||||
<key>Ansi 3 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.4000000000000000</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.6549019607843137</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.9490196078431372</real>
|
||||
</dict>
|
||||
<key>Ansi 4 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.2862745098039216</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.4901960784313725</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.8313725490196079</real>
|
||||
</dict>
|
||||
<key>Ansi 5 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.3254901960784314</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.2941176470588235</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.5411764705882353</real>
|
||||
</dict>
|
||||
<key>Ansi 6 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.3450980392156863</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.4549019607843137</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.6509803921568628</real>
|
||||
</dict>
|
||||
<key>Ansi 7 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.4000000000000000</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.6549019607843137</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.9490196078431372</real>
|
||||
</dict>
|
||||
<key>Ansi 8 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.1686274509803922</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.1764705882352941</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.2235294117647059</real>
|
||||
</dict>
|
||||
<key>Ansi 9 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.1725490196078431</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.2784313725490196</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.7490196078431373</real>
|
||||
</dict>
|
||||
<key>Background Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.1490196078431373</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.1058823529411765</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.1019607843137255</real>
|
||||
</dict>
|
||||
<key>Badge Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>0.5</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.0</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.1491314172744751</real>
|
||||
<key>Red Component</key>
|
||||
<real>1</real>
|
||||
</dict>
|
||||
<key>Bold Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.4705882352941176</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.5803921568627451</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.7764705882352941</real>
|
||||
</dict>
|
||||
<key>Cursor Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.6823529411764706</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.8000000000000000</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.8784313725490196</real>
|
||||
</dict>
|
||||
<key>Cursor Guide Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>0.25</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.6823529411764706</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.8000000000000000</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.8784313725490196</real>
|
||||
</dict>
|
||||
<key>Cursor Text Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.1490196078431373</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.1058823529411765</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.1019607843137255</real>
|
||||
</dict>
|
||||
<key>Foreground Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.6823529411764706</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.8000000000000000</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.8784313725490196</real>
|
||||
</dict>
|
||||
<key>Link Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.5607843137254902</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.6627450980392157</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.7686274509803922</real>
|
||||
</dict>
|
||||
<key>Selected Text Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.6823529411764706</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.8000000000000000</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.8784313725490196</real>
|
||||
</dict>
|
||||
<key>Selection Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.2549019607843137</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.3098039215686275</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.4431372549019608</real>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -0,0 +1,344 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>Ansi 0 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.0235294117647059</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.0274509803921569</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.0470588235294118</real>
|
||||
</dict>
|
||||
<key>Ansi 1 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.1725490196078431</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.2784313725490196</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.7490196078431373</real>
|
||||
</dict>
|
||||
<key>Ansi 10 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.4352941176470588</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.5372549019607843</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.6431372549019608</real>
|
||||
</dict>
|
||||
<key>Ansi 11 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.4000000000000000</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.6549019607843137</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.9490196078431372</real>
|
||||
</dict>
|
||||
<key>Ansi 12 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.2862745098039216</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.4901960784313725</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.8313725490196079</real>
|
||||
</dict>
|
||||
<key>Ansi 13 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.3254901960784314</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.2941176470588235</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.5411764705882353</real>
|
||||
</dict>
|
||||
<key>Ansi 14 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.3450980392156863</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.4549019607843137</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.6509803921568628</real>
|
||||
</dict>
|
||||
<key>Ansi 15 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.6823529411764706</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.8000000000000000</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.8784313725490196</real>
|
||||
</dict>
|
||||
<key>Ansi 2 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.4352941176470588</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.5372549019607843</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.6431372549019608</real>
|
||||
</dict>
|
||||
<key>Ansi 3 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.4000000000000000</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.6549019607843137</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.9490196078431372</real>
|
||||
</dict>
|
||||
<key>Ansi 4 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.2862745098039216</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.4901960784313725</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.8313725490196079</real>
|
||||
</dict>
|
||||
<key>Ansi 5 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.3254901960784314</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.2941176470588235</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.5411764705882353</real>
|
||||
</dict>
|
||||
<key>Ansi 6 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.3450980392156863</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.4549019607843137</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.6509803921568628</real>
|
||||
</dict>
|
||||
<key>Ansi 7 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.4000000000000000</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.6549019607843137</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.9490196078431372</real>
|
||||
</dict>
|
||||
<key>Ansi 8 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.1686274509803922</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.1764705882352941</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.2235294117647059</real>
|
||||
</dict>
|
||||
<key>Ansi 9 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.1725490196078431</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.2784313725490196</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.7490196078431373</real>
|
||||
</dict>
|
||||
<key>Background Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.0313725490196078</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.0352941176470588</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.0588235294117647</real>
|
||||
</dict>
|
||||
<key>Badge Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>0.5</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.0</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.1491314172744751</real>
|
||||
<key>Red Component</key>
|
||||
<real>1</real>
|
||||
</dict>
|
||||
<key>Bold Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.4705882352941176</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.5803921568627451</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.7764705882352941</real>
|
||||
</dict>
|
||||
<key>Cursor Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.6823529411764706</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.8000000000000000</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.8784313725490196</real>
|
||||
</dict>
|
||||
<key>Cursor Guide Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>0.25</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.6823529411764706</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.8000000000000000</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.8784313725490196</real>
|
||||
</dict>
|
||||
<key>Cursor Text Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.0313725490196078</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.0352941176470588</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.0588235294117647</real>
|
||||
</dict>
|
||||
<key>Foreground Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.6823529411764706</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.8000000000000000</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.8784313725490196</real>
|
||||
</dict>
|
||||
<key>Link Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.5607843137254902</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.6627450980392157</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.7686274509803922</real>
|
||||
</dict>
|
||||
<key>Selected Text Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.6823529411764706</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.8000000000000000</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.8784313725490196</real>
|
||||
</dict>
|
||||
<key>Selection Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.1843137254901961</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.2666666666666667</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.4196078431372549</real>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -0,0 +1,50 @@
|
||||
# vim:ft=kitty
|
||||
|
||||
## name: FarOut Day
|
||||
## license: MIT
|
||||
## author: Folke Lemaitre
|
||||
## upstream: https://github.com/thallada/farout.nvim/raw/main/extras/kitty/faroutday.conf
|
||||
|
||||
|
||||
background #e1e2e7
|
||||
foreground #6c6252
|
||||
selection_background #c48c75
|
||||
selection_foreground #6c6252
|
||||
url_color #887562
|
||||
cursor #6c6252
|
||||
cursor_text_color #e1e2e7
|
||||
|
||||
# Tabs
|
||||
active_tab_background #c77544
|
||||
active_tab_foreground #e9e9ec
|
||||
inactive_tab_background #eae1e0
|
||||
inactive_tab_foreground #dfa9ad
|
||||
#tab_bar_background #e9e9ed
|
||||
|
||||
# Windows
|
||||
active_border_color #c77544
|
||||
inactive_border_color #eae1e0
|
||||
|
||||
# normal
|
||||
color0 #e9e9ed
|
||||
color1 #db5234
|
||||
color2 #715e4b
|
||||
color3 #9b6635
|
||||
color4 #c77544
|
||||
color5 #c37f87
|
||||
color6 #91654c
|
||||
color7 #9b6635
|
||||
|
||||
# bright
|
||||
color8 #d1c4c2
|
||||
color9 #db5234
|
||||
color10 #715e4b
|
||||
color11 #9b6635
|
||||
color12 #c77544
|
||||
color13 #c37f87
|
||||
color14 #91654c
|
||||
color15 #6c6252
|
||||
|
||||
# extended colors
|
||||
color16 #b15c00
|
||||
color17 #a14834
|
||||
@@ -0,0 +1,50 @@
|
||||
# vim:ft=kitty
|
||||
|
||||
## name: FarOut Moon
|
||||
## license: MIT
|
||||
## author: Folke Lemaitre
|
||||
## upstream: https://github.com/thallada/farout.nvim/raw/main/extras/kitty/faroutmoon.conf
|
||||
|
||||
|
||||
background #222436
|
||||
foreground #c8d3f5
|
||||
selection_background #2d3f76
|
||||
selection_foreground #c8d3f5
|
||||
url_color #4fd6be
|
||||
cursor #c8d3f5
|
||||
cursor_text_color #222436
|
||||
|
||||
# Tabs
|
||||
active_tab_background #82aaff
|
||||
active_tab_foreground #1e2030
|
||||
inactive_tab_background #2f334d
|
||||
inactive_tab_foreground #545c7e
|
||||
#tab_bar_background #1b1d2b
|
||||
|
||||
# Windows
|
||||
active_border_color #82aaff
|
||||
inactive_border_color #2f334d
|
||||
|
||||
# normal
|
||||
color0 #1b1d2b
|
||||
color1 #ff757f
|
||||
color2 #c3e88d
|
||||
color3 #ffc777
|
||||
color4 #82aaff
|
||||
color5 #c099ff
|
||||
color6 #86e1fc
|
||||
color7 #828bb8
|
||||
|
||||
# bright
|
||||
color8 #444a73
|
||||
color9 #ff757f
|
||||
color10 #c3e88d
|
||||
color11 #ffc777
|
||||
color12 #82aaff
|
||||
color13 #c099ff
|
||||
color14 #86e1fc
|
||||
color15 #c8d3f5
|
||||
|
||||
# extended colors
|
||||
color16 #ff966c
|
||||
color17 #c53b53
|
||||
@@ -0,0 +1,50 @@
|
||||
# vim:ft=kitty
|
||||
|
||||
## name: FarOut
|
||||
## license: MIT
|
||||
## author: Folke Lemaitre
|
||||
## upstream: https://github.com/thallada/farout.nvim/raw/main/extras/kitty/faroutnight.conf
|
||||
|
||||
|
||||
background #1a1b26
|
||||
foreground #E0CCAE
|
||||
selection_background #714f41
|
||||
selection_foreground #E0CCAE
|
||||
url_color #c4a98f
|
||||
cursor #E0CCAE
|
||||
cursor_text_color #1a1b26
|
||||
|
||||
# Tabs
|
||||
active_tab_background #d47d49
|
||||
active_tab_foreground #16161e
|
||||
inactive_tab_background #241816
|
||||
inactive_tab_foreground #66292F
|
||||
#tab_bar_background #15161e
|
||||
|
||||
# Windows
|
||||
active_border_color #d47d49
|
||||
inactive_border_color #241816
|
||||
|
||||
# normal
|
||||
color0 #15161e
|
||||
color1 #bf472c
|
||||
color2 #a4896f
|
||||
color3 #f2a766
|
||||
color4 #d47d49
|
||||
color5 #8a4b53
|
||||
color6 #a67458
|
||||
color7 #F2A766
|
||||
|
||||
# bright
|
||||
color8 #392D2B
|
||||
color9 #bf472c
|
||||
color10 #a4896f
|
||||
color11 #f2a766
|
||||
color12 #d47d49
|
||||
color13 #8a4b53
|
||||
color14 #a67458
|
||||
color15 #E0CCAE
|
||||
|
||||
# extended colors
|
||||
color16 #ff9e64
|
||||
color17 #df674c
|
||||
@@ -0,0 +1,50 @@
|
||||
# vim:ft=kitty
|
||||
|
||||
## name: FarOut Storm
|
||||
## license: MIT
|
||||
## author: Folke Lemaitre
|
||||
## upstream: https://github.com/thallada/farout.nvim/raw/main/extras/kitty/faroutstorm.conf
|
||||
|
||||
|
||||
background #0f0908
|
||||
foreground #E0CCAE
|
||||
selection_background #6b442f
|
||||
selection_foreground #E0CCAE
|
||||
url_color #c4a98f
|
||||
cursor #E0CCAE
|
||||
cursor_text_color #0f0908
|
||||
|
||||
# Tabs
|
||||
active_tab_background #d47d49
|
||||
active_tab_foreground #1f1311
|
||||
inactive_tab_background #241816
|
||||
inactive_tab_foreground #66292F
|
||||
#tab_bar_background #0c0706
|
||||
|
||||
# Windows
|
||||
active_border_color #d47d49
|
||||
inactive_border_color #241816
|
||||
|
||||
# normal
|
||||
color0 #0c0706
|
||||
color1 #bf472c
|
||||
color2 #a4896f
|
||||
color3 #f2a766
|
||||
color4 #d47d49
|
||||
color5 #8a4b53
|
||||
color6 #a67458
|
||||
color7 #F2A766
|
||||
|
||||
# bright
|
||||
color8 #392D2B
|
||||
color9 #bf472c
|
||||
color10 #a4896f
|
||||
color11 #f2a766
|
||||
color12 #d47d49
|
||||
color13 #8a4b53
|
||||
color14 #a67458
|
||||
color15 #E0CCAE
|
||||
|
||||
# extended colors
|
||||
color16 #ff9e64
|
||||
color17 #df674c
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,75 @@
|
||||
module.exports = {
|
||||
plain: {
|
||||
color: "#6c6252",
|
||||
backgroundColor: "#e1e2e7",
|
||||
},
|
||||
styles: [
|
||||
{
|
||||
types: ["prolog", "builtin"],
|
||||
style: {
|
||||
color: "#db5234",
|
||||
},
|
||||
},
|
||||
{
|
||||
types: ["function"],
|
||||
style: {
|
||||
color: "#c77544",
|
||||
},
|
||||
},
|
||||
{
|
||||
types: ["symbol"],
|
||||
style: {
|
||||
color: "#db5234",
|
||||
},
|
||||
},
|
||||
{
|
||||
types: ["punctuation"],
|
||||
style: {
|
||||
color: "#c37f87",
|
||||
},
|
||||
},
|
||||
{
|
||||
types: ["string", "char", "tag", "selector"],
|
||||
style: {
|
||||
color: "#715e4b",
|
||||
},
|
||||
},
|
||||
{
|
||||
types: ["keyword"],
|
||||
style: {
|
||||
color: "#876060",
|
||||
},
|
||||
},
|
||||
{
|
||||
types: ["operator"],
|
||||
style: {
|
||||
color: "#91654c",
|
||||
},
|
||||
},
|
||||
{
|
||||
types: ["constant", "boolean"],
|
||||
style: {
|
||||
color: "#b15c00",
|
||||
},
|
||||
},
|
||||
{
|
||||
types: ["variable"],
|
||||
style: {
|
||||
color: "#6c6252",
|
||||
},
|
||||
},
|
||||
{
|
||||
types: ["comment"],
|
||||
style: {
|
||||
color: "#d79687",
|
||||
fontStyle: "italic",
|
||||
},
|
||||
},
|
||||
{
|
||||
types: ["attr-name"],
|
||||
style: {
|
||||
color: "rgb(241, 250, 140)",
|
||||
},
|
||||
},
|
||||
],
|
||||
};
|
||||
@@ -0,0 +1,75 @@
|
||||
module.exports = {
|
||||
plain: {
|
||||
color: "#c8d3f5",
|
||||
backgroundColor: "#222436",
|
||||
},
|
||||
styles: [
|
||||
{
|
||||
types: ["prolog", "builtin"],
|
||||
style: {
|
||||
color: "#ff757f",
|
||||
},
|
||||
},
|
||||
{
|
||||
types: ["function"],
|
||||
style: {
|
||||
color: "#82aaff",
|
||||
},
|
||||
},
|
||||
{
|
||||
types: ["symbol"],
|
||||
style: {
|
||||
color: "#65bcff",
|
||||
},
|
||||
},
|
||||
{
|
||||
types: ["punctuation"],
|
||||
style: {
|
||||
color: "#c099ff",
|
||||
},
|
||||
},
|
||||
{
|
||||
types: ["string", "char", "tag", "selector"],
|
||||
style: {
|
||||
color: "#c3e88d",
|
||||
},
|
||||
},
|
||||
{
|
||||
types: ["keyword"],
|
||||
style: {
|
||||
color: "#fca7ea",
|
||||
},
|
||||
},
|
||||
{
|
||||
types: ["operator"],
|
||||
style: {
|
||||
color: "#89ddff",
|
||||
},
|
||||
},
|
||||
{
|
||||
types: ["constant", "boolean"],
|
||||
style: {
|
||||
color: "#ff966c",
|
||||
},
|
||||
},
|
||||
{
|
||||
types: ["variable"],
|
||||
style: {
|
||||
color: "#c8d3f5",
|
||||
},
|
||||
},
|
||||
{
|
||||
types: ["comment"],
|
||||
style: {
|
||||
color: "#636da6",
|
||||
fontStyle: "italic",
|
||||
},
|
||||
},
|
||||
{
|
||||
types: ["attr-name"],
|
||||
style: {
|
||||
color: "rgb(241, 250, 140)",
|
||||
},
|
||||
},
|
||||
],
|
||||
};
|
||||
@@ -0,0 +1,75 @@
|
||||
module.exports = {
|
||||
plain: {
|
||||
color: "#E0CCAE",
|
||||
backgroundColor: "#1a1b26",
|
||||
},
|
||||
styles: [
|
||||
{
|
||||
types: ["prolog", "builtin"],
|
||||
style: {
|
||||
color: "#bf472c",
|
||||
},
|
||||
},
|
||||
{
|
||||
types: ["function"],
|
||||
style: {
|
||||
color: "#d47d49",
|
||||
},
|
||||
},
|
||||
{
|
||||
types: ["symbol"],
|
||||
style: {
|
||||
color: "#BF472C",
|
||||
},
|
||||
},
|
||||
{
|
||||
types: ["punctuation"],
|
||||
style: {
|
||||
color: "#8a4b53",
|
||||
},
|
||||
},
|
||||
{
|
||||
types: ["string", "char", "tag", "selector"],
|
||||
style: {
|
||||
color: "#a4896f",
|
||||
},
|
||||
},
|
||||
{
|
||||
types: ["keyword"],
|
||||
style: {
|
||||
color: "#a47a7a",
|
||||
},
|
||||
},
|
||||
{
|
||||
types: ["operator"],
|
||||
style: {
|
||||
color: "#a67458",
|
||||
},
|
||||
},
|
||||
{
|
||||
types: ["constant", "boolean"],
|
||||
style: {
|
||||
color: "#ff9e64",
|
||||
},
|
||||
},
|
||||
{
|
||||
types: ["variable"],
|
||||
style: {
|
||||
color: "#E0CCAE",
|
||||
},
|
||||
},
|
||||
{
|
||||
types: ["comment"],
|
||||
style: {
|
||||
color: "#6B4035",
|
||||
fontStyle: "italic",
|
||||
},
|
||||
},
|
||||
{
|
||||
types: ["attr-name"],
|
||||
style: {
|
||||
color: "rgb(241, 250, 140)",
|
||||
},
|
||||
},
|
||||
],
|
||||
};
|
||||
@@ -0,0 +1,75 @@
|
||||
module.exports = {
|
||||
plain: {
|
||||
color: "#E0CCAE",
|
||||
backgroundColor: "#0f0908",
|
||||
},
|
||||
styles: [
|
||||
{
|
||||
types: ["prolog", "builtin"],
|
||||
style: {
|
||||
color: "#bf472c",
|
||||
},
|
||||
},
|
||||
{
|
||||
types: ["function"],
|
||||
style: {
|
||||
color: "#d47d49",
|
||||
},
|
||||
},
|
||||
{
|
||||
types: ["symbol"],
|
||||
style: {
|
||||
color: "#BF472C",
|
||||
},
|
||||
},
|
||||
{
|
||||
types: ["punctuation"],
|
||||
style: {
|
||||
color: "#8a4b53",
|
||||
},
|
||||
},
|
||||
{
|
||||
types: ["string", "char", "tag", "selector"],
|
||||
style: {
|
||||
color: "#a4896f",
|
||||
},
|
||||
},
|
||||
{
|
||||
types: ["keyword"],
|
||||
style: {
|
||||
color: "#a47a7a",
|
||||
},
|
||||
},
|
||||
{
|
||||
types: ["operator"],
|
||||
style: {
|
||||
color: "#a67458",
|
||||
},
|
||||
},
|
||||
{
|
||||
types: ["constant", "boolean"],
|
||||
style: {
|
||||
color: "#ff9e64",
|
||||
},
|
||||
},
|
||||
{
|
||||
types: ["variable"],
|
||||
style: {
|
||||
color: "#E0CCAE",
|
||||
},
|
||||
},
|
||||
{
|
||||
types: ["comment"],
|
||||
style: {
|
||||
color: "#6B4035",
|
||||
fontStyle: "italic",
|
||||
},
|
||||
},
|
||||
{
|
||||
types: ["attr-name"],
|
||||
style: {
|
||||
color: "rgb(241, 250, 140)",
|
||||
},
|
||||
},
|
||||
],
|
||||
};
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,5 @@
|
||||
[[FarOut Day]]
|
||||
palette = "#e9e9ed:#db5234:#715e4b:#9b6635:#c77544:#c37f87:#91654c:#9b6635:#d1c4c2:#db5234:#715e4b:#9b6635:#c77544:#c37f87:#91654c:#876060"
|
||||
background_color = "#e1e2e7"
|
||||
foreground_color = "#6c6252"
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
[[FarOut Moon]]
|
||||
palette = "#1b1d2b:#ff757f:#c3e88d:#ffc777:#82aaff:#c099ff:#86e1fc:#828bb8:#444a73:#ff757f:#c3e88d:#ffc777:#82aaff:#c099ff:#86e1fc:#fca7ea"
|
||||
background_color = "#222436"
|
||||
foreground_color = "#c8d3f5"
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
[[FarOut]]
|
||||
palette = "#15161e:#bf472c:#a4896f:#f2a766:#d47d49:#8a4b53:#a67458:#F2A766:#392D2B:#bf472c:#a4896f:#f2a766:#d47d49:#8a4b53:#a67458:#a47a7a"
|
||||
background_color = "#1a1b26"
|
||||
foreground_color = "#E0CCAE"
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
[[FarOut Storm]]
|
||||
palette = "#0c0706:#bf472c:#a4896f:#f2a766:#d47d49:#8a4b53:#a67458:#F2A766:#392D2B:#bf472c:#a4896f:#f2a766:#d47d49:#8a4b53:#a67458:#a47a7a"
|
||||
background_color = "#0f0908"
|
||||
foreground_color = "#E0CCAE"
|
||||
|
||||
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"name": "FarOut Day",
|
||||
"comment": "",
|
||||
"use-theme-colors": false,
|
||||
"foreground-color": "#6c6252",
|
||||
"background-color": "#e1e2e7",
|
||||
"palette": [
|
||||
"#e9e9ed",
|
||||
"#db5234",
|
||||
"#715e4b",
|
||||
"#9b6635",
|
||||
"#c77544",
|
||||
"#c37f87",
|
||||
"#91654c",
|
||||
"#9b6635",
|
||||
"#d1c4c2",
|
||||
"#db5234",
|
||||
"#715e4b",
|
||||
"#9b6635",
|
||||
"#c77544",
|
||||
"#c37f87",
|
||||
"#91654c",
|
||||
"#6c6252"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"name": "FarOut Moon",
|
||||
"comment": "",
|
||||
"use-theme-colors": false,
|
||||
"foreground-color": "#c8d3f5",
|
||||
"background-color": "#222436",
|
||||
"palette": [
|
||||
"#1b1d2b",
|
||||
"#ff757f",
|
||||
"#c3e88d",
|
||||
"#ffc777",
|
||||
"#82aaff",
|
||||
"#c099ff",
|
||||
"#86e1fc",
|
||||
"#828bb8",
|
||||
"#444a73",
|
||||
"#ff757f",
|
||||
"#c3e88d",
|
||||
"#ffc777",
|
||||
"#82aaff",
|
||||
"#c099ff",
|
||||
"#86e1fc",
|
||||
"#c8d3f5"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"name": "FarOut",
|
||||
"comment": "",
|
||||
"use-theme-colors": false,
|
||||
"foreground-color": "#E0CCAE",
|
||||
"background-color": "#1a1b26",
|
||||
"palette": [
|
||||
"#15161e",
|
||||
"#bf472c",
|
||||
"#a4896f",
|
||||
"#f2a766",
|
||||
"#d47d49",
|
||||
"#8a4b53",
|
||||
"#a67458",
|
||||
"#F2A766",
|
||||
"#392D2B",
|
||||
"#bf472c",
|
||||
"#a4896f",
|
||||
"#f2a766",
|
||||
"#d47d49",
|
||||
"#8a4b53",
|
||||
"#a67458",
|
||||
"#E0CCAE"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"name": "FarOut Storm",
|
||||
"comment": "",
|
||||
"use-theme-colors": false,
|
||||
"foreground-color": "#E0CCAE",
|
||||
"background-color": "#0f0908",
|
||||
"palette": [
|
||||
"#0c0706",
|
||||
"#bf472c",
|
||||
"#a4896f",
|
||||
"#f2a766",
|
||||
"#d47d49",
|
||||
"#8a4b53",
|
||||
"#a67458",
|
||||
"#F2A766",
|
||||
"#392D2B",
|
||||
"#bf472c",
|
||||
"#a4896f",
|
||||
"#f2a766",
|
||||
"#d47d49",
|
||||
"#8a4b53",
|
||||
"#a67458",
|
||||
"#E0CCAE"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -0,0 +1,38 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# FarOut colors for Tmux
|
||||
|
||||
set -g mode-style "fg=#c77544,bg=#d79687"
|
||||
|
||||
set -g message-style "fg=#c77544,bg=#d79687"
|
||||
set -g message-command-style "fg=#c77544,bg=#d79687"
|
||||
|
||||
set -g pane-border-style "fg=#d79687"
|
||||
set -g pane-active-border-style "fg=#c77544"
|
||||
|
||||
set -g status "on"
|
||||
set -g status-justify "left"
|
||||
|
||||
set -g status-style "fg=#c77544,bg=#e9e9ec"
|
||||
|
||||
set -g status-left-length "100"
|
||||
set -g status-right-length "100"
|
||||
|
||||
set -g status-left-style NONE
|
||||
set -g status-right-style NONE
|
||||
|
||||
set -g status-left "#[fg=#e9e9ed,bg=#c77544,bold] #S #[fg=#c77544,bg=#e9e9ec,nobold,nounderscore,noitalics]"
|
||||
set -g status-right "#[fg=#e9e9ec,bg=#e9e9ec,nobold,nounderscore,noitalics]#[fg=#c77544,bg=#e9e9ec] #{prefix_highlight} #[fg=#d79687,bg=#e9e9ec,nobold,nounderscore,noitalics]#[fg=#c77544,bg=#d79687] %Y-%m-%d %I:%M %p #[fg=#c77544,bg=#d79687,nobold,nounderscore,noitalics]#[fg=#e9e9ed,bg=#c77544,bold] #h "
|
||||
if-shell '[ "$(tmux show-option -gqv "clock-mode-style")" == "24" ]' {
|
||||
set -g status-right "#[fg=#e9e9ec,bg=#e9e9ec,nobold,nounderscore,noitalics]#[fg=#c77544,bg=#e9e9ec] #{prefix_highlight} #[fg=#d79687,bg=#e9e9ec,nobold,nounderscore,noitalics]#[fg=#c77544,bg=#d79687] %Y-%m-%d %H:%M #[fg=#c77544,bg=#d79687,nobold,nounderscore,noitalics]#[fg=#e9e9ed,bg=#c77544,bold] #h "
|
||||
}
|
||||
|
||||
setw -g window-status-activity-style "underscore,fg=#9b6635,bg=#e9e9ec"
|
||||
setw -g window-status-separator ""
|
||||
setw -g window-status-style "NONE,fg=#9b6635,bg=#e9e9ec"
|
||||
setw -g window-status-format "#[fg=#e9e9ec,bg=#e9e9ec,nobold,nounderscore,noitalics]#[default] #I #W #F #[fg=#e9e9ec,bg=#e9e9ec,nobold,nounderscore,noitalics]"
|
||||
setw -g window-status-current-format "#[fg=#e9e9ec,bg=#d79687,nobold,nounderscore,noitalics]#[fg=#c77544,bg=#d79687,bold] #I #W #F #[fg=#d79687,bg=#e9e9ec,nobold,nounderscore,noitalics]"
|
||||
|
||||
# tmux-plugins/tmux-prefix-highlight support
|
||||
set -g @prefix_highlight_output_prefix "#[fg=#9b6635]#[bg=#e9e9ec]#[fg=#e9e9ec]#[bg=#9b6635]"
|
||||
set -g @prefix_highlight_output_suffix ""
|
||||
@@ -0,0 +1,38 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# FarOut colors for Tmux
|
||||
|
||||
set -g mode-style "fg=#82aaff,bg=#3b4261"
|
||||
|
||||
set -g message-style "fg=#82aaff,bg=#3b4261"
|
||||
set -g message-command-style "fg=#82aaff,bg=#3b4261"
|
||||
|
||||
set -g pane-border-style "fg=#3b4261"
|
||||
set -g pane-active-border-style "fg=#82aaff"
|
||||
|
||||
set -g status "on"
|
||||
set -g status-justify "left"
|
||||
|
||||
set -g status-style "fg=#82aaff,bg=#1e2030"
|
||||
|
||||
set -g status-left-length "100"
|
||||
set -g status-right-length "100"
|
||||
|
||||
set -g status-left-style NONE
|
||||
set -g status-right-style NONE
|
||||
|
||||
set -g status-left "#[fg=#1b1d2b,bg=#82aaff,bold] #S #[fg=#82aaff,bg=#1e2030,nobold,nounderscore,noitalics]"
|
||||
set -g status-right "#[fg=#1e2030,bg=#1e2030,nobold,nounderscore,noitalics]#[fg=#82aaff,bg=#1e2030] #{prefix_highlight} #[fg=#3b4261,bg=#1e2030,nobold,nounderscore,noitalics]#[fg=#82aaff,bg=#3b4261] %Y-%m-%d %I:%M %p #[fg=#82aaff,bg=#3b4261,nobold,nounderscore,noitalics]#[fg=#1b1d2b,bg=#82aaff,bold] #h "
|
||||
if-shell '[ "$(tmux show-option -gqv "clock-mode-style")" == "24" ]' {
|
||||
set -g status-right "#[fg=#1e2030,bg=#1e2030,nobold,nounderscore,noitalics]#[fg=#82aaff,bg=#1e2030] #{prefix_highlight} #[fg=#3b4261,bg=#1e2030,nobold,nounderscore,noitalics]#[fg=#82aaff,bg=#3b4261] %Y-%m-%d %H:%M #[fg=#82aaff,bg=#3b4261,nobold,nounderscore,noitalics]#[fg=#1b1d2b,bg=#82aaff,bold] #h "
|
||||
}
|
||||
|
||||
setw -g window-status-activity-style "underscore,fg=#828bb8,bg=#1e2030"
|
||||
setw -g window-status-separator ""
|
||||
setw -g window-status-style "NONE,fg=#828bb8,bg=#1e2030"
|
||||
setw -g window-status-format "#[fg=#1e2030,bg=#1e2030,nobold,nounderscore,noitalics]#[default] #I #W #F #[fg=#1e2030,bg=#1e2030,nobold,nounderscore,noitalics]"
|
||||
setw -g window-status-current-format "#[fg=#1e2030,bg=#3b4261,nobold,nounderscore,noitalics]#[fg=#82aaff,bg=#3b4261,bold] #I #W #F #[fg=#3b4261,bg=#1e2030,nobold,nounderscore,noitalics]"
|
||||
|
||||
# tmux-plugins/tmux-prefix-highlight support
|
||||
set -g @prefix_highlight_output_prefix "#[fg=#ffc777]#[bg=#1e2030]#[fg=#1e2030]#[bg=#ffc777]"
|
||||
set -g @prefix_highlight_output_suffix ""
|
||||
@@ -0,0 +1,38 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# FarOut colors for Tmux
|
||||
|
||||
set -g mode-style "fg=#d47d49,bg=#6B4035"
|
||||
|
||||
set -g message-style "fg=#d47d49,bg=#6B4035"
|
||||
set -g message-command-style "fg=#d47d49,bg=#6B4035"
|
||||
|
||||
set -g pane-border-style "fg=#6B4035"
|
||||
set -g pane-active-border-style "fg=#d47d49"
|
||||
|
||||
set -g status "on"
|
||||
set -g status-justify "left"
|
||||
|
||||
set -g status-style "fg=#d47d49,bg=#16161e"
|
||||
|
||||
set -g status-left-length "100"
|
||||
set -g status-right-length "100"
|
||||
|
||||
set -g status-left-style NONE
|
||||
set -g status-right-style NONE
|
||||
|
||||
set -g status-left "#[fg=#15161e,bg=#d47d49,bold] #S #[fg=#d47d49,bg=#16161e,nobold,nounderscore,noitalics]"
|
||||
set -g status-right "#[fg=#16161e,bg=#16161e,nobold,nounderscore,noitalics]#[fg=#d47d49,bg=#16161e] #{prefix_highlight} #[fg=#6B4035,bg=#16161e,nobold,nounderscore,noitalics]#[fg=#d47d49,bg=#6B4035] %Y-%m-%d %I:%M %p #[fg=#d47d49,bg=#6B4035,nobold,nounderscore,noitalics]#[fg=#15161e,bg=#d47d49,bold] #h "
|
||||
if-shell '[ "$(tmux show-option -gqv "clock-mode-style")" == "24" ]' {
|
||||
set -g status-right "#[fg=#16161e,bg=#16161e,nobold,nounderscore,noitalics]#[fg=#d47d49,bg=#16161e] #{prefix_highlight} #[fg=#6B4035,bg=#16161e,nobold,nounderscore,noitalics]#[fg=#d47d49,bg=#6B4035] %Y-%m-%d %H:%M #[fg=#d47d49,bg=#6B4035,nobold,nounderscore,noitalics]#[fg=#15161e,bg=#d47d49,bold] #h "
|
||||
}
|
||||
|
||||
setw -g window-status-activity-style "underscore,fg=#F2A766,bg=#16161e"
|
||||
setw -g window-status-separator ""
|
||||
setw -g window-status-style "NONE,fg=#F2A766,bg=#16161e"
|
||||
setw -g window-status-format "#[fg=#16161e,bg=#16161e,nobold,nounderscore,noitalics]#[default] #I #W #F #[fg=#16161e,bg=#16161e,nobold,nounderscore,noitalics]"
|
||||
setw -g window-status-current-format "#[fg=#16161e,bg=#6B4035,nobold,nounderscore,noitalics]#[fg=#d47d49,bg=#6B4035,bold] #I #W #F #[fg=#6B4035,bg=#16161e,nobold,nounderscore,noitalics]"
|
||||
|
||||
# tmux-plugins/tmux-prefix-highlight support
|
||||
set -g @prefix_highlight_output_prefix "#[fg=#f2a766]#[bg=#16161e]#[fg=#16161e]#[bg=#f2a766]"
|
||||
set -g @prefix_highlight_output_suffix ""
|
||||
@@ -0,0 +1,38 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# FarOut colors for Tmux
|
||||
|
||||
set -g mode-style "fg=#d47d49,bg=#6B4035"
|
||||
|
||||
set -g message-style "fg=#d47d49,bg=#6B4035"
|
||||
set -g message-command-style "fg=#d47d49,bg=#6B4035"
|
||||
|
||||
set -g pane-border-style "fg=#6B4035"
|
||||
set -g pane-active-border-style "fg=#d47d49"
|
||||
|
||||
set -g status "on"
|
||||
set -g status-justify "left"
|
||||
|
||||
set -g status-style "fg=#d47d49,bg=#1f1311"
|
||||
|
||||
set -g status-left-length "100"
|
||||
set -g status-right-length "100"
|
||||
|
||||
set -g status-left-style NONE
|
||||
set -g status-right-style NONE
|
||||
|
||||
set -g status-left "#[fg=#0c0706,bg=#d47d49,bold] #S #[fg=#d47d49,bg=#1f1311,nobold,nounderscore,noitalics]"
|
||||
set -g status-right "#[fg=#1f1311,bg=#1f1311,nobold,nounderscore,noitalics]#[fg=#d47d49,bg=#1f1311] #{prefix_highlight} #[fg=#6B4035,bg=#1f1311,nobold,nounderscore,noitalics]#[fg=#d47d49,bg=#6B4035] %Y-%m-%d %I:%M %p #[fg=#d47d49,bg=#6B4035,nobold,nounderscore,noitalics]#[fg=#0c0706,bg=#d47d49,bold] #h "
|
||||
if-shell '[ "$(tmux show-option -gqv "clock-mode-style")" == "24" ]' {
|
||||
set -g status-right "#[fg=#1f1311,bg=#1f1311,nobold,nounderscore,noitalics]#[fg=#d47d49,bg=#1f1311] #{prefix_highlight} #[fg=#6B4035,bg=#1f1311,nobold,nounderscore,noitalics]#[fg=#d47d49,bg=#6B4035] %Y-%m-%d %H:%M #[fg=#d47d49,bg=#6B4035,nobold,nounderscore,noitalics]#[fg=#0c0706,bg=#d47d49,bold] #h "
|
||||
}
|
||||
|
||||
setw -g window-status-activity-style "underscore,fg=#F2A766,bg=#1f1311"
|
||||
setw -g window-status-separator ""
|
||||
setw -g window-status-style "NONE,fg=#F2A766,bg=#1f1311"
|
||||
setw -g window-status-format "#[fg=#1f1311,bg=#1f1311,nobold,nounderscore,noitalics]#[default] #I #W #F #[fg=#1f1311,bg=#1f1311,nobold,nounderscore,noitalics]"
|
||||
setw -g window-status-current-format "#[fg=#1f1311,bg=#6B4035,nobold,nounderscore,noitalics]#[fg=#d47d49,bg=#6B4035,bold] #I #W #F #[fg=#6B4035,bg=#1f1311,nobold,nounderscore,noitalics]"
|
||||
|
||||
# tmux-plugins/tmux-prefix-highlight support
|
||||
set -g @prefix_highlight_output_prefix "#[fg=#f2a766]#[bg=#1f1311]#[fg=#1f1311]#[bg=#f2a766]"
|
||||
set -g @prefix_highlight_output_suffix ""
|
||||
@@ -0,0 +1,44 @@
|
||||
[colors]
|
||||
foreground = "#6c6252"
|
||||
background = "#e1e2e7"
|
||||
cursor_bg = "#6c6252"
|
||||
cursor_border = "#6c6252"
|
||||
cursor_fg = "#e1e2e7"
|
||||
selection_bg = "#c48c75"
|
||||
selection_fg = "#6c6252"
|
||||
split = "#c77544"
|
||||
compose_cursor = "#b15c00"
|
||||
|
||||
ansi = ["#e9e9ed", "#db5234", "#715e4b", "#9b6635", "#c77544", "#c37f87", "#91654c", "#9b6635"]
|
||||
brights = ["#d1c4c2", "#db5234", "#715e4b", "#9b6635", "#c77544", "#c37f87", "#91654c", "#6c6252"]
|
||||
|
||||
[colors.tab_bar]
|
||||
inactive_tab_edge = "#e9e9ec"
|
||||
background = "#e1e2e7"
|
||||
|
||||
[colors.tab_bar.active_tab]
|
||||
fg_color = "#e9e9ec"
|
||||
bg_color = "#c77544"
|
||||
|
||||
[colors.tab_bar.inactive_tab]
|
||||
fg_color = "#dfa9ad"
|
||||
bg_color = "#eae1e0"
|
||||
|
||||
[colors.tab_bar.inactive_tab_hover]
|
||||
fg_color = "#c77544"
|
||||
bg_color = "#eae1e0"
|
||||
# intensity = "Bold"
|
||||
|
||||
[colors.tab_bar.new_tab_hover]
|
||||
fg_color = "#c77544"
|
||||
bg_color = "#e1e2e7"
|
||||
intensity = "Bold"
|
||||
|
||||
[colors.tab_bar.new_tab]
|
||||
fg_color = "#c77544"
|
||||
bg_color = "#e1e2e7"
|
||||
|
||||
[metadata]
|
||||
aliases = []
|
||||
author = "folke"
|
||||
name = "faroutday"
|
||||
@@ -0,0 +1,44 @@
|
||||
[colors]
|
||||
foreground = "#c8d3f5"
|
||||
background = "#222436"
|
||||
cursor_bg = "#c8d3f5"
|
||||
cursor_border = "#c8d3f5"
|
||||
cursor_fg = "#222436"
|
||||
selection_bg = "#2d3f76"
|
||||
selection_fg = "#c8d3f5"
|
||||
split = "#82aaff"
|
||||
compose_cursor = "#ff966c"
|
||||
|
||||
ansi = ["#1b1d2b", "#ff757f", "#c3e88d", "#ffc777", "#82aaff", "#c099ff", "#86e1fc", "#828bb8"]
|
||||
brights = ["#444a73", "#ff757f", "#c3e88d", "#ffc777", "#82aaff", "#c099ff", "#86e1fc", "#c8d3f5"]
|
||||
|
||||
[colors.tab_bar]
|
||||
inactive_tab_edge = "#1e2030"
|
||||
background = "#222436"
|
||||
|
||||
[colors.tab_bar.active_tab]
|
||||
fg_color = "#1e2030"
|
||||
bg_color = "#82aaff"
|
||||
|
||||
[colors.tab_bar.inactive_tab]
|
||||
fg_color = "#545c7e"
|
||||
bg_color = "#2f334d"
|
||||
|
||||
[colors.tab_bar.inactive_tab_hover]
|
||||
fg_color = "#82aaff"
|
||||
bg_color = "#2f334d"
|
||||
# intensity = "Bold"
|
||||
|
||||
[colors.tab_bar.new_tab_hover]
|
||||
fg_color = "#82aaff"
|
||||
bg_color = "#222436"
|
||||
intensity = "Bold"
|
||||
|
||||
[colors.tab_bar.new_tab]
|
||||
fg_color = "#82aaff"
|
||||
bg_color = "#222436"
|
||||
|
||||
[metadata]
|
||||
aliases = []
|
||||
author = "folke"
|
||||
name = "faroutmoon"
|
||||
@@ -0,0 +1,44 @@
|
||||
[colors]
|
||||
foreground = "#E0CCAE"
|
||||
background = "#1a1b26"
|
||||
cursor_bg = "#E0CCAE"
|
||||
cursor_border = "#E0CCAE"
|
||||
cursor_fg = "#1a1b26"
|
||||
selection_bg = "#714f41"
|
||||
selection_fg = "#E0CCAE"
|
||||
split = "#d47d49"
|
||||
compose_cursor = "#ff9e64"
|
||||
|
||||
ansi = ["#15161e", "#bf472c", "#a4896f", "#f2a766", "#d47d49", "#8a4b53", "#a67458", "#F2A766"]
|
||||
brights = ["#392D2B", "#bf472c", "#a4896f", "#f2a766", "#d47d49", "#8a4b53", "#a67458", "#E0CCAE"]
|
||||
|
||||
[colors.tab_bar]
|
||||
inactive_tab_edge = "#16161e"
|
||||
background = "#1a1b26"
|
||||
|
||||
[colors.tab_bar.active_tab]
|
||||
fg_color = "#16161e"
|
||||
bg_color = "#d47d49"
|
||||
|
||||
[colors.tab_bar.inactive_tab]
|
||||
fg_color = "#66292F"
|
||||
bg_color = "#241816"
|
||||
|
||||
[colors.tab_bar.inactive_tab_hover]
|
||||
fg_color = "#d47d49"
|
||||
bg_color = "#241816"
|
||||
# intensity = "Bold"
|
||||
|
||||
[colors.tab_bar.new_tab_hover]
|
||||
fg_color = "#d47d49"
|
||||
bg_color = "#1a1b26"
|
||||
intensity = "Bold"
|
||||
|
||||
[colors.tab_bar.new_tab]
|
||||
fg_color = "#d47d49"
|
||||
bg_color = "#1a1b26"
|
||||
|
||||
[metadata]
|
||||
aliases = []
|
||||
author = "folke"
|
||||
name = "faroutnight"
|
||||
@@ -0,0 +1,44 @@
|
||||
[colors]
|
||||
foreground = "#E0CCAE"
|
||||
background = "#0f0908"
|
||||
cursor_bg = "#E0CCAE"
|
||||
cursor_border = "#E0CCAE"
|
||||
cursor_fg = "#0f0908"
|
||||
selection_bg = "#6b442f"
|
||||
selection_fg = "#E0CCAE"
|
||||
split = "#d47d49"
|
||||
compose_cursor = "#ff9e64"
|
||||
|
||||
ansi = ["#0c0706", "#bf472c", "#a4896f", "#f2a766", "#d47d49", "#8a4b53", "#a67458", "#F2A766"]
|
||||
brights = ["#392D2B", "#bf472c", "#a4896f", "#f2a766", "#d47d49", "#8a4b53", "#a67458", "#E0CCAE"]
|
||||
|
||||
[colors.tab_bar]
|
||||
inactive_tab_edge = "#1f1311"
|
||||
background = "#0f0908"
|
||||
|
||||
[colors.tab_bar.active_tab]
|
||||
fg_color = "#1f1311"
|
||||
bg_color = "#d47d49"
|
||||
|
||||
[colors.tab_bar.inactive_tab]
|
||||
fg_color = "#66292F"
|
||||
bg_color = "#241816"
|
||||
|
||||
[colors.tab_bar.inactive_tab_hover]
|
||||
fg_color = "#d47d49"
|
||||
bg_color = "#241816"
|
||||
# intensity = "Bold"
|
||||
|
||||
[colors.tab_bar.new_tab_hover]
|
||||
fg_color = "#d47d49"
|
||||
bg_color = "#0f0908"
|
||||
intensity = "Bold"
|
||||
|
||||
[colors.tab_bar.new_tab]
|
||||
fg_color = "#d47d49"
|
||||
bg_color = "#0f0908"
|
||||
|
||||
[metadata]
|
||||
aliases = []
|
||||
author = "folke"
|
||||
name = "faroutstorm"
|
||||
@@ -0,0 +1,25 @@
|
||||
# Add the following object to your Windows Terminal configuration
|
||||
# https://learn.microsoft.com/en-us/windows/terminal/customize-settings/color-schemes#creating-your-own-color-scheme
|
||||
{
|
||||
"background": "#e1e2e7",
|
||||
"black": "#e9e9ed",
|
||||
"blue": "#c77544",
|
||||
"brightBlack": "#d1c4c2",
|
||||
"brightBlue": "#c77544",
|
||||
"brightCyan": "#91654c",
|
||||
"brightGreen": "#715e4b",
|
||||
"brightPurple": "#876060",
|
||||
"brightRed": "#db5234",
|
||||
"brightWhite": "#6c6252",
|
||||
"brightYellow": "#9b6635",
|
||||
"cursorColor": "#6c6252",
|
||||
"cyan": "#91654c",
|
||||
"foreground": "#6c6252",
|
||||
"green": "#715e4b",
|
||||
"name": "FarOut Day",
|
||||
"purple": "#c37f87",
|
||||
"red": "#db5234",
|
||||
"selectionBackground": "#c48c75",
|
||||
"white": "#9b6635",
|
||||
"yellow": "#9b6635"
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
# Add the following object to your Windows Terminal configuration
|
||||
# https://learn.microsoft.com/en-us/windows/terminal/customize-settings/color-schemes#creating-your-own-color-scheme
|
||||
{
|
||||
"background": "#222436",
|
||||
"black": "#1b1d2b",
|
||||
"blue": "#82aaff",
|
||||
"brightBlack": "#444a73",
|
||||
"brightBlue": "#82aaff",
|
||||
"brightCyan": "#86e1fc",
|
||||
"brightGreen": "#c3e88d",
|
||||
"brightPurple": "#fca7ea",
|
||||
"brightRed": "#ff757f",
|
||||
"brightWhite": "#c8d3f5",
|
||||
"brightYellow": "#ffc777",
|
||||
"cursorColor": "#c8d3f5",
|
||||
"cyan": "#86e1fc",
|
||||
"foreground": "#c8d3f5",
|
||||
"green": "#c3e88d",
|
||||
"name": "FarOut Moon",
|
||||
"purple": "#c099ff",
|
||||
"red": "#ff757f",
|
||||
"selectionBackground": "#2d3f76",
|
||||
"white": "#828bb8",
|
||||
"yellow": "#ffc777"
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
# Add the following object to your Windows Terminal configuration
|
||||
# https://learn.microsoft.com/en-us/windows/terminal/customize-settings/color-schemes#creating-your-own-color-scheme
|
||||
{
|
||||
"background": "#1a1b26",
|
||||
"black": "#15161e",
|
||||
"blue": "#d47d49",
|
||||
"brightBlack": "#392D2B",
|
||||
"brightBlue": "#d47d49",
|
||||
"brightCyan": "#a67458",
|
||||
"brightGreen": "#a4896f",
|
||||
"brightPurple": "#a47a7a",
|
||||
"brightRed": "#bf472c",
|
||||
"brightWhite": "#E0CCAE",
|
||||
"brightYellow": "#f2a766",
|
||||
"cursorColor": "#E0CCAE",
|
||||
"cyan": "#a67458",
|
||||
"foreground": "#E0CCAE",
|
||||
"green": "#a4896f",
|
||||
"name": "FarOut",
|
||||
"purple": "#8a4b53",
|
||||
"red": "#bf472c",
|
||||
"selectionBackground": "#714f41",
|
||||
"white": "#F2A766",
|
||||
"yellow": "#f2a766"
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
# Add the following object to your Windows Terminal configuration
|
||||
# https://learn.microsoft.com/en-us/windows/terminal/customize-settings/color-schemes#creating-your-own-color-scheme
|
||||
{
|
||||
"background": "#0f0908",
|
||||
"black": "#0c0706",
|
||||
"blue": "#d47d49",
|
||||
"brightBlack": "#392D2B",
|
||||
"brightBlue": "#d47d49",
|
||||
"brightCyan": "#a67458",
|
||||
"brightGreen": "#a4896f",
|
||||
"brightPurple": "#a47a7a",
|
||||
"brightRed": "#bf472c",
|
||||
"brightWhite": "#E0CCAE",
|
||||
"brightYellow": "#f2a766",
|
||||
"cursorColor": "#E0CCAE",
|
||||
"cyan": "#a67458",
|
||||
"foreground": "#E0CCAE",
|
||||
"green": "#a4896f",
|
||||
"name": "FarOut Storm",
|
||||
"purple": "#8a4b53",
|
||||
"red": "#bf472c",
|
||||
"selectionBackground": "#6b442f",
|
||||
"white": "#F2A766",
|
||||
"yellow": "#f2a766"
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
[Scheme]
|
||||
Name=FarOut Colors
|
||||
ColorBackground=#e1e2e7
|
||||
ColorForeground=#6c6252
|
||||
|
||||
ColorSelectionBackground=#c48c75
|
||||
ColorSelection=#6c6252
|
||||
|
||||
ColorPalette=#e9e9ed;#db5234;#715e4b;#9b6635;#c77544;#c37f87;#91654c;#9b6635;#d1c4c2;#db5234;#715e4b;#9b6635;#c77544;#c37f87;#91654c;#6c6252
|
||||
@@ -0,0 +1,9 @@
|
||||
[Scheme]
|
||||
Name=FarOut Colors
|
||||
ColorBackground=#222436
|
||||
ColorForeground=#c8d3f5
|
||||
|
||||
ColorSelectionBackground=#2d3f76
|
||||
ColorSelection=#c8d3f5
|
||||
|
||||
ColorPalette=#1b1d2b;#ff757f;#c3e88d;#ffc777;#82aaff;#c099ff;#86e1fc;#828bb8;#444a73;#ff757f;#c3e88d;#ffc777;#82aaff;#c099ff;#86e1fc;#c8d3f5
|
||||
@@ -0,0 +1,9 @@
|
||||
[Scheme]
|
||||
Name=FarOut Colors
|
||||
ColorBackground=#1a1b26
|
||||
ColorForeground=#E0CCAE
|
||||
|
||||
ColorSelectionBackground=#714f41
|
||||
ColorSelection=#E0CCAE
|
||||
|
||||
ColorPalette=#15161e;#bf472c;#a4896f;#f2a766;#d47d49;#8a4b53;#a67458;#F2A766;#392D2B;#bf472c;#a4896f;#f2a766;#d47d49;#8a4b53;#a67458;#E0CCAE
|
||||
@@ -0,0 +1,9 @@
|
||||
[Scheme]
|
||||
Name=FarOut Colors
|
||||
ColorBackground=#0f0908
|
||||
ColorForeground=#E0CCAE
|
||||
|
||||
ColorSelectionBackground=#6b442f
|
||||
ColorSelection=#E0CCAE
|
||||
|
||||
ColorPalette=#0c0706;#bf472c;#a4896f;#f2a766;#d47d49;#8a4b53;#a67458;#F2A766;#392D2B;#bf472c;#a4896f;#f2a766;#d47d49;#8a4b53;#a67458;#E0CCAE
|
||||
@@ -0,0 +1,23 @@
|
||||
! FarOut colors for Xresources
|
||||
|
||||
*background: #e1e2e7
|
||||
*foreground: #6c6252
|
||||
|
||||
*color0: #e9e9ed
|
||||
*color1: #db5234
|
||||
*color2: #715e4b
|
||||
*color3: #9b6635
|
||||
*color4: #c77544
|
||||
*color5: #c37f87
|
||||
*color6: #91654c
|
||||
*color7: #9b6635
|
||||
|
||||
*color8: #d1c4c2
|
||||
*color9: #db5234
|
||||
*color10: #715e4b
|
||||
*color11: #9b6635
|
||||
*color12: #c77544
|
||||
*color13: #c37f87
|
||||
*color14: #91654c
|
||||
*color15: #6c6252
|
||||
|
||||
@@ -0,0 +1,23 @@
|
||||
! FarOut colors for Xresources
|
||||
|
||||
*background: #222436
|
||||
*foreground: #c8d3f5
|
||||
|
||||
*color0: #1b1d2b
|
||||
*color1: #ff757f
|
||||
*color2: #c3e88d
|
||||
*color3: #ffc777
|
||||
*color4: #82aaff
|
||||
*color5: #c099ff
|
||||
*color6: #86e1fc
|
||||
*color7: #828bb8
|
||||
|
||||
*color8: #444a73
|
||||
*color9: #ff757f
|
||||
*color10: #c3e88d
|
||||
*color11: #ffc777
|
||||
*color12: #82aaff
|
||||
*color13: #c099ff
|
||||
*color14: #86e1fc
|
||||
*color15: #c8d3f5
|
||||
|
||||
@@ -0,0 +1,23 @@
|
||||
! FarOut colors for Xresources
|
||||
|
||||
*background: #1a1b26
|
||||
*foreground: #E0CCAE
|
||||
|
||||
*color0: #15161e
|
||||
*color1: #bf472c
|
||||
*color2: #a4896f
|
||||
*color3: #f2a766
|
||||
*color4: #d47d49
|
||||
*color5: #8a4b53
|
||||
*color6: #a67458
|
||||
*color7: #F2A766
|
||||
|
||||
*color8: #392D2B
|
||||
*color9: #bf472c
|
||||
*color10: #a4896f
|
||||
*color11: #f2a766
|
||||
*color12: #d47d49
|
||||
*color13: #8a4b53
|
||||
*color14: #a67458
|
||||
*color15: #E0CCAE
|
||||
|
||||
@@ -0,0 +1,23 @@
|
||||
! FarOut colors for Xresources
|
||||
|
||||
*background: #0f0908
|
||||
*foreground: #E0CCAE
|
||||
|
||||
*color0: #0c0706
|
||||
*color1: #bf472c
|
||||
*color2: #a4896f
|
||||
*color3: #f2a766
|
||||
*color4: #d47d49
|
||||
*color5: #8a4b53
|
||||
*color6: #a67458
|
||||
*color7: #F2A766
|
||||
|
||||
*color8: #392D2B
|
||||
*color9: #bf472c
|
||||
*color10: #a4896f
|
||||
*color11: #f2a766
|
||||
*color12: #d47d49
|
||||
*color13: #8a4b53
|
||||
*color14: #a67458
|
||||
*color15: #E0CCAE
|
||||
|
||||
@@ -0,0 +1,38 @@
|
||||
# Tokyonight color theme for Zathura
|
||||
# Swaps Foreground for Background to get a light version if the user prefers
|
||||
#
|
||||
# Tokyonight color theme
|
||||
#
|
||||
set notification-error-bg "#db5234"
|
||||
set notification-error-fg "#6c6252"
|
||||
set notification-warning-bg "#9b6635"
|
||||
set notification-warning-fg "#d1c4c2"
|
||||
set notification-bg "#e1e2e7"
|
||||
set notification-fg "#6c6252"
|
||||
set completion-bg "#e1e2e7"
|
||||
set completion-fg "#9b6635"
|
||||
set completion-group-bg "#e1e2e7"
|
||||
set completion-group-fg "#9b6635"
|
||||
set completion-highlight-bg "#d1c4c2"
|
||||
set completion-highlight-fg "#6c6252"
|
||||
set index-bg "#e1e2e7"
|
||||
set index-fg "#6c6252"
|
||||
set index-active-bg "#d1c4c2"
|
||||
set index-active-fg "#6c6252"
|
||||
set inputbar-bg "#e1e2e7"
|
||||
set inputbar-fg "#6c6252"
|
||||
set statusbar-bg "#e1e2e7"
|
||||
set statusbar-fg "#6c6252"
|
||||
set highlight-color "#9b6635"
|
||||
set highlight-active-color "#715e4b"
|
||||
set default-bg "#e1e2e7"
|
||||
set default-fg "#6c6252"
|
||||
set render-loading true
|
||||
set render-loading-fg "#e1e2e7"
|
||||
set render-loading-bg "#6c6252"
|
||||
#
|
||||
# Recolor mode settings
|
||||
# <C-r> to switch modes
|
||||
#
|
||||
set recolor-lightcolor "#e1e2e7"
|
||||
set recolor-darkcolor "#6c6252"
|
||||
@@ -0,0 +1,38 @@
|
||||
# Tokyonight color theme for Zathura
|
||||
# Swaps Foreground for Background to get a light version if the user prefers
|
||||
#
|
||||
# Tokyonight color theme
|
||||
#
|
||||
set notification-error-bg "#ff757f"
|
||||
set notification-error-fg "#c8d3f5"
|
||||
set notification-warning-bg "#ffc777"
|
||||
set notification-warning-fg "#444a73"
|
||||
set notification-bg "#222436"
|
||||
set notification-fg "#c8d3f5"
|
||||
set completion-bg "#222436"
|
||||
set completion-fg "#828bb8"
|
||||
set completion-group-bg "#222436"
|
||||
set completion-group-fg "#828bb8"
|
||||
set completion-highlight-bg "#444a73"
|
||||
set completion-highlight-fg "#c8d3f5"
|
||||
set index-bg "#222436"
|
||||
set index-fg "#c8d3f5"
|
||||
set index-active-bg "#444a73"
|
||||
set index-active-fg "#c8d3f5"
|
||||
set inputbar-bg "#222436"
|
||||
set inputbar-fg "#c8d3f5"
|
||||
set statusbar-bg "#222436"
|
||||
set statusbar-fg "#c8d3f5"
|
||||
set highlight-color "#ffc777"
|
||||
set highlight-active-color "#c3e88d"
|
||||
set default-bg "#222436"
|
||||
set default-fg "#c8d3f5"
|
||||
set render-loading true
|
||||
set render-loading-fg "#222436"
|
||||
set render-loading-bg "#c8d3f5"
|
||||
#
|
||||
# Recolor mode settings
|
||||
# <C-r> to switch modes
|
||||
#
|
||||
set recolor-lightcolor "#222436"
|
||||
set recolor-darkcolor "#c8d3f5"
|
||||
@@ -0,0 +1,38 @@
|
||||
# Tokyonight color theme for Zathura
|
||||
# Swaps Foreground for Background to get a light version if the user prefers
|
||||
#
|
||||
# Tokyonight color theme
|
||||
#
|
||||
set notification-error-bg "#bf472c"
|
||||
set notification-error-fg "#E0CCAE"
|
||||
set notification-warning-bg "#f2a766"
|
||||
set notification-warning-fg "#392D2B"
|
||||
set notification-bg "#1a1b26"
|
||||
set notification-fg "#E0CCAE"
|
||||
set completion-bg "#1a1b26"
|
||||
set completion-fg "#F2A766"
|
||||
set completion-group-bg "#1a1b26"
|
||||
set completion-group-fg "#F2A766"
|
||||
set completion-highlight-bg "#392D2B"
|
||||
set completion-highlight-fg "#E0CCAE"
|
||||
set index-bg "#1a1b26"
|
||||
set index-fg "#E0CCAE"
|
||||
set index-active-bg "#392D2B"
|
||||
set index-active-fg "#E0CCAE"
|
||||
set inputbar-bg "#1a1b26"
|
||||
set inputbar-fg "#E0CCAE"
|
||||
set statusbar-bg "#1a1b26"
|
||||
set statusbar-fg "#E0CCAE"
|
||||
set highlight-color "#f2a766"
|
||||
set highlight-active-color "#a4896f"
|
||||
set default-bg "#1a1b26"
|
||||
set default-fg "#E0CCAE"
|
||||
set render-loading true
|
||||
set render-loading-fg "#1a1b26"
|
||||
set render-loading-bg "#E0CCAE"
|
||||
#
|
||||
# Recolor mode settings
|
||||
# <C-r> to switch modes
|
||||
#
|
||||
set recolor-lightcolor "#1a1b26"
|
||||
set recolor-darkcolor "#E0CCAE"
|
||||
@@ -0,0 +1,38 @@
|
||||
# Tokyonight color theme for Zathura
|
||||
# Swaps Foreground for Background to get a light version if the user prefers
|
||||
#
|
||||
# Tokyonight color theme
|
||||
#
|
||||
set notification-error-bg "#bf472c"
|
||||
set notification-error-fg "#E0CCAE"
|
||||
set notification-warning-bg "#f2a766"
|
||||
set notification-warning-fg "#392D2B"
|
||||
set notification-bg "#0f0908"
|
||||
set notification-fg "#E0CCAE"
|
||||
set completion-bg "#0f0908"
|
||||
set completion-fg "#F2A766"
|
||||
set completion-group-bg "#0f0908"
|
||||
set completion-group-fg "#F2A766"
|
||||
set completion-highlight-bg "#392D2B"
|
||||
set completion-highlight-fg "#E0CCAE"
|
||||
set index-bg "#0f0908"
|
||||
set index-fg "#E0CCAE"
|
||||
set index-active-bg "#392D2B"
|
||||
set index-active-fg "#E0CCAE"
|
||||
set inputbar-bg "#0f0908"
|
||||
set inputbar-fg "#E0CCAE"
|
||||
set statusbar-bg "#0f0908"
|
||||
set statusbar-fg "#E0CCAE"
|
||||
set highlight-color "#f2a766"
|
||||
set highlight-active-color "#a4896f"
|
||||
set default-bg "#0f0908"
|
||||
set default-fg "#E0CCAE"
|
||||
set render-loading true
|
||||
set render-loading-fg "#0f0908"
|
||||
set render-loading-bg "#E0CCAE"
|
||||
#
|
||||
# Recolor mode settings
|
||||
# <C-r> to switch modes
|
||||
#
|
||||
set recolor-lightcolor "#0f0908"
|
||||
set recolor-darkcolor "#E0CCAE"
|
||||
@@ -1,4 +1,4 @@
|
||||
local c = require("tokyonight.colors").setup({ transform = true })
|
||||
local c = require("farout.colors").setup({ transform = true })
|
||||
|
||||
local M = {
|
||||
normal = { bg = c.none, fg = c.fg_dark },
|
||||
@@ -1,44 +1,45 @@
|
||||
local util = require("tokyonight.util")
|
||||
local util = require("farout.util")
|
||||
|
||||
local M = {}
|
||||
|
||||
---@class Palette
|
||||
M.default = {
|
||||
none = "NONE",
|
||||
bg_dark = "#1f2335",
|
||||
bg = "#24283b",
|
||||
bg_highlight = "#292e42",
|
||||
terminal_black = "#414868",
|
||||
fg = "#c0caf5",
|
||||
fg_dark = "#a9b1d6",
|
||||
fg_gutter = "#3b4261",
|
||||
dark3 = "#545c7e",
|
||||
comment = "#565f89",
|
||||
dark5 = "#737aa2",
|
||||
blue0 = "#3d59a1",
|
||||
blue = "#7aa2f7",
|
||||
cyan = "#7dcfff",
|
||||
blue1 = "#2ac3de",
|
||||
blue2 = "#0db9d7",
|
||||
blue5 = "#89ddff",
|
||||
blue6 = "#b4f9f8",
|
||||
blue7 = "#394b70",
|
||||
magenta = "#bb9af7",
|
||||
magenta2 = "#ff007c",
|
||||
purple = "#9d7cd8",
|
||||
bg_dark = "#1f1311",
|
||||
bg = "#0f0908",
|
||||
bg_highlight = "#241816",
|
||||
terminal_black = "#392D2B",
|
||||
fg = "#E0CCAE",
|
||||
fg_dark = "#F2A766",
|
||||
fg_gutter = "#6B4035",
|
||||
dark3 = "#66292F",
|
||||
comment = "#6B4035",
|
||||
dark5 = "#A67458",
|
||||
blue0 = "#f49d69",
|
||||
blue = "#d47d49",
|
||||
cyan = "#a67458",
|
||||
-- TODO: rename to orange/red
|
||||
blue1 = "#BF472C",
|
||||
blue2 = "#A4895C",
|
||||
blue5 = "#a67458",
|
||||
blue6 = "#BC907B",
|
||||
blue7 = "#703F29",
|
||||
magenta = "#8a4b53",
|
||||
magenta2 = "#aa6b73",
|
||||
purple = "#a47a7a",
|
||||
orange = "#ff9e64",
|
||||
yellow = "#e0af68",
|
||||
green = "#9ece6a",
|
||||
green1 = "#73daca",
|
||||
green2 = "#41a6b5",
|
||||
teal = "#1abc9c",
|
||||
red = "#f7768e",
|
||||
red1 = "#db4b4b",
|
||||
git = { change = "#6183bb", add = "#449dab", delete = "#914c54" },
|
||||
yellow = "#f2a766",
|
||||
green = "#a4896f",
|
||||
green1 = "#c4a98f",
|
||||
green2 = "#ceb399",
|
||||
teal = "#c69478",
|
||||
red = "#bf472c",
|
||||
red1 = "#df674c",
|
||||
git = { change = "#66292F", add = "#A4895C", delete = "#BF472C" },
|
||||
gitSigns = {
|
||||
add = "#266d6a",
|
||||
change = "#536c9e",
|
||||
delete = "#b2555b",
|
||||
add = "#CAAF82",
|
||||
change = "#8C4F55",
|
||||
delete = "#E26F55",
|
||||
},
|
||||
}
|
||||
|
||||
@@ -98,7 +99,7 @@ end
|
||||
---@return ColorScheme
|
||||
function M.setup(opts)
|
||||
opts = opts or {}
|
||||
local config = require("tokyonight.config")
|
||||
local config = require("farout.config")
|
||||
|
||||
local style = config.is_day() and config.options.light_style or config.options.style
|
||||
local palette = M[style] or {}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user