Skip to content

Commit

Permalink
Add color table, Termite config
Browse files Browse the repository at this point in the history
  • Loading branch information
dofuuz committed Jan 25, 2024
1 parent a246e97 commit e8326ba
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 0 deletions.
26 changes: 26 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,30 @@ A terminal color scheme, cooked with science.

[Preview](https://htmlpreview.github.io/?https://github.com/dofuuz/dimidium/blob/main/preview/tty-preview-nobold.html)

## Download config

[PuTTY](https://raw.githubusercontent.com/dofuuz/dimidium/main/config/putty-dof.reg) | [Mintty](https://raw.githubusercontent.com/dofuuz/dimidium/main/config/mintty-dof) | [Windows Terminal](https://raw.githubusercontent.com/dofuuz/dimidium/main/config/winterm-dof.json)


## Color table

Name | RGB255 | HEX
---------------|---------------|--------
Foreground | 186, 183, 182 | #BAB7B6
Background | 20, 20, 20 | #141414
Black | 0, 0, 0 | #000000
Red | 207, 73, 76 | #CF494C
Green | 96, 180, 66 | #60B442
Yellow | 219, 156, 17 | #DB9C11
Blue | 5, 117, 216 | #0575D8
Magenta | 175, 94, 210 | #AF5ED2
Cyan | 29, 182, 187 | #1DB6BB
White | 186, 183, 182 | #BAB7B6
Bright Black | 86, 85, 84 | #565554
Bright Red | 255, 100, 59 | #FF643B
Bright Green | 55, 229, 123 | #37E57B
Bright Yellow | 252, 205, 26 | #FCCD1A
Bright Blue | 104, 141, 253 | #688DFD
Bright Magenta | 237, 111, 233 | #ED6FE9
Bright Cyan | 50, 224, 251 | #32E0FB
Bright White | 218, 214, 213 | #DAD6D5
41 changes: 41 additions & 0 deletions config/termite-dimidium.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
[colors]
# Dimidium color scheme
# https://github.com/dofuuz/dimidium

# special
foreground = #bab7b6
foreground_bold = #dad6d5
cursor = #bab7b6
background = #141414

# black
color0 = #000000
color8 = #565554

# red
color1 = #cf494c
color9 = #ff643b

# green
color2 = #60b442
color10 = #37e57b

# yellow
color3 = #db9c11
color11 = #fccd1a

# blue
color4 = #0575d8
color12 = #688dfd

# magenta
color5 = #af5ed2
color13 = #ed6fe9

# cyan
color6 = #1db6bb
color14 = #32e0fb

# white
color7 = #bab7b6
color15 = #dad6d5

0 comments on commit e8326ba

Please sign in to comment.