- Added support for custom word lists (`-words).
 - `-theme` now accepts a path.
 - Added `~/.tt/themes` and `~/.tt/words`.
 - Scrapped ~/.ttrc in favour of aliases/flags.
 - Included more default word lists. (`-list words`)
This commit is contained in:
Aetnaeus 2021-01-03 22:25:54 -05:00
parent bb442d1773
commit 955d28a8bd
204 changed files with 6212 additions and 1573 deletions

View File

@ -1,3 +1,10 @@
# 0.3.0:
- Added support for custom word lists (`-words).
- `-theme` now accepts a path.
- Added `~/.tt/themes` and `~/.tt/words`.
- Scrapped ~/.ttrc in favour of aliases/flags.
- Included more default word lists. (`-list words`)
# 0.2.2:
- Modified -g to correspond to the number of groups rather than the group size.
- Added -multi

View File

@ -3,7 +3,8 @@ all:
install:
install -m755 bin/tt /usr/local/bin
assets:
python3 tools/themegen.py | gofmt > generatedThemes.go
python3 ./scripts/themegen.py
./scripts/pack themes/ words/ > packed.go
rel:
GOOS=darwin GOARCH=amd64 go build -o bin/tt-osx *.go
GOOS=windows GOARCH=amd64 go build -o bin/tt.exe *.go

View File

@ -9,13 +9,13 @@ A terminal based typing test.
## Linux
```
sudo curl -L https://github.com/lemnos/tt/releases/download/v0.2.2/tt-linux -o /usr/local/bin/tt && sudo chmod +x /usr/local/bin/tt
sudo curl -L https://github.com/lemnos/tt/releases/download/v0.3.0/tt-linux -o /usr/local/bin/tt && sudo chmod +x /usr/local/bin/tt
```
## OSX
```
sudo curl -L https://github.com/lemnos/tt/releases/download/v0.2.2/tt-osx -o /usr/local/bin/tt && sudo chmod +x /usr/local/bin/tt
sudo curl -L https://github.com/lemnos/tt/releases/download/v0.3.0/tt-osx -o /usr/local/bin/tt && sudo chmod +x /usr/local/bin/tt
```
## Windows
@ -60,15 +60,10 @@ See `-help` for an exhaustive list of options.
## Configuration
The theme can be configured by setting the following options in `~/.ttrc`:
- `bgcol`: The default background colour.
- `fgcol`: The default text colour.
- `hicol`: The colour used to highlight typed text.
- `hicol2` The colour used to highlight the current word.
- `hicol3`: The colour used to highlight the next word.
- `errcol`: The colour used to highlight errors.
- `theme`: The theme from which default colors are drawn, a list of builtin themes can be obtained via `-list themes`.
Custom themes and word lists can be defined in `~/.tt/themes` and `~/.tt/words`
and used in conjunction with the `-theme` and `-words` flags. A list of
preloaded themes and word lists can be found in `words/` and `themes/` and are
accessible by default using the respective flags.
## Recipes
@ -80,4 +75,3 @@ what can be achieved.
- `shuf -n 40 /usr/share/dict/words|tt` Produces a test consisting of 40 random words drawn from your system's dictionary.
- `curl http://api.quotable.io/random|jq -r .content|tt` Produces a test consisting of a random quote.
- `alias ttd='tt -csv >> ~/wpm.csv'` Creates an alias called ttd which keeps a log of your progress in your home directory`.

File diff suppressed because it is too large Load Diff

210
packed.go Normal file

File diff suppressed because one or more lines are too long

30
scripts/pack Executable file
View File

@ -0,0 +1,30 @@
#!/bin/sh
[ $# -gt 0 ] || { echo "Usage: $0 <path>... > packed.go"; exit 1; }
cat <<!
package main
import "encoding/base64"
func readPackedFile(path string) []byte {
if b,ok := packedFiles[path]; !ok {
return nil
} else {
b, err := base64.StdEncoding.DecodeString(b)
if err != nil {
panic(err)
}
return b
}
}
!
printf "var packedFiles = map[string]string{\n"
find "$@" -type f|while read f; do
printf "\t\"$f\": \""
openssl base64 -A < "$f"
printf "\",\n"
done
printf "}"

View File

@ -23,13 +23,7 @@ def blend(src, dest, opacity):
return "#%.2x%.2x%.2x" % (int(sr), int(sg), int(sb))
print("//GENERATED CODE, DO NOT EDIT BY HAND (see themegen.py)\n\n")
print("package main\n")
print("var generatedThemes = map[string]map[string]string{")
for name, t in themes.items():
print('\t"%s": map[string]string{' % name)
# Meat (alter these to taste)
mapping = {
"bgcol": t['background'],
@ -40,9 +34,6 @@ for name, t in themes.items():
"errcol": t['color1'],
}
out = open(f'themes/{name}', 'w')
for k, v in mapping.items():
print('\t\t"%s": "%s",' % (k, v))
print("\t},")
print("}")
out.write(f'{k}: {v}\n')

View File

@ -1,23 +0,0 @@
package main
//Themes defined here take precedence over their generated counterparts and should be manually curated.
var themes = map[string]map[string]string{
"default": {
"fgcol": "#8C8C8C",
"bgcol": "#282828",
"hicol2": "#805b13",
"hicol3": "#b4801b",
"hicol": "#ffffff",
"errcol": "#a10705",
},
}
func init() {
for k, v := range generatedThemes {
if _, exists := themes[k]; !exists {
themes[k] = v
}
}
}

6
themes/3024-day Normal file
View File

@ -0,0 +1,6 @@
bgcol: #f7f7f7
fgcol: #4a4543
hicol: #a5a2a2
hicol2: #eccddb
hicol3: #e8bbd0
errcol: #db2d20

6
themes/3024-night Normal file
View File

@ -0,0 +1,6 @@
bgcol: #090300
fgcol: #a5a2a2
hicol: #a5a2a2
hicol2: #a58391
hicol3: #e8bbd0
errcol: #db2d20

6
themes/_base Normal file
View File

@ -0,0 +1,6 @@
bgcol: #260346
fgcol: #DADADA
hicol: #C9CCCD
hicol2: #ad363f
hicol3: #E74C3C
errcol: #C54133

6
themes/aci Normal file
View File

@ -0,0 +1,6 @@
bgcol: #0d1926
fgcol: #b4e1fd
hicol: #b6b6b6
hicol2: #b61c6e
hicol3: #ff1e8e
errcol: #ff0883

6
themes/aco Normal file
View File

@ -0,0 +1,6 @@
bgcol: #1f1305
fgcol: #b4e1fd
hicol: #bebebe
hicol2: #bb1a64
hicol3: #ff1e8e
errcol: #ff0883

6
themes/adventuretime Normal file
View File

@ -0,0 +1,6 @@
bgcol: #1f1d45
fgcol: #f8dcc0
hicol: #f8dcc0
hicol2: #b94b53
hicol3: #fc5f5a
errcol: #bd0013

6
themes/afterglow Normal file
View File

@ -0,0 +1,6 @@
bgcol: #222222
fgcol: #d0d0d0
hicol: #d0d0d0
hicol2: #7d3422
hicol3: #a53c23
errcol: #a53c23

6
themes/alien-blood Normal file
View File

@ -0,0 +1,6 @@
bgcol: #0f1610
fgcol: #637d75
hicol: #647d75
hicol2: #a1600b
hicol3: #e08009
errcol: #7f2b27

6
themes/argonaut Normal file
View File

@ -0,0 +1,6 @@
bgcol: #0e1019
fgcol: #fffaf4
hicol: #ffffff
hicol2: #b62034
hicol3: #ff2740
errcol: #ff000f

6
themes/arthur Normal file
View File

@ -0,0 +1,6 @@
bgcol: #1c1c1c
fgcol: #ddeedd
hicol: #bbaa99
hicol2: #97432c
hicol3: #cc5533
errcol: #cd5c5c

6
themes/atom Normal file
View File

@ -0,0 +1,6 @@
bgcol: #161719
fgcol: #c5c8c6
hicol: #e0e0e0
hicol2: #b749b0
hicol3: #fd5ff1
errcol: #fd5ff1

6
themes/azu Normal file
View File

@ -0,0 +1,6 @@
bgcol: #09111a
fgcol: #d9e6f2
hicol: #e6e6e6
hicol2: #98858b
hicol3: #d6b8bc
errcol: #ac6d74

6
themes/belafonte-day Normal file
View File

@ -0,0 +1,6 @@
bgcol: #d5ccba
fgcol: #45373c
hicol: #968c83
hicol2: #c44841
hicol3: #be100e
errcol: #be100e

6
themes/belafonte-night Normal file
View File

@ -0,0 +1,6 @@
bgcol: #20111b
fgcol: #968c83
hicol: #968c83
hicol2: #8e1011
hicol3: #be100e
errcol: #be100e

6
themes/bim Normal file
View File

@ -0,0 +1,6 @@
bgcol: #012849
fgcol: #a9bed8
hicol: #918988
hicol2: #ab6092
hicol3: #f579b2
errcol: #f557a0

6
themes/birds-of-paradise Normal file
View File

@ -0,0 +1,6 @@
bgcol: #2a1f1d
fgcol: #e0dbb7
hicol: #e0dbb7
hicol2: #ae3a24
hicol3: #e84627
errcol: #be2d26

6
themes/blazer Normal file
View File

@ -0,0 +1,6 @@
bgcol: #0d1926
fgcol: #d9e6f2
hicol: #d9d9d9
hicol2: #9d8b8f
hicol3: #dbbdbd
errcol: #b87a7a

6
themes/borland Normal file
View File

@ -0,0 +1,6 @@
bgcol: #0000a4
fgcol: #ffff4e
hicol: #eeeeee
hicol2: #b27fac
hicol3: #ffb6b0
errcol: #ff6c60

6
themes/broadcast Normal file
View File

@ -0,0 +1,6 @@
bgcol: #2b2b2b
fgcol: #e6e1dc
hicol: #ffffff
hicol2: #bf6357
hicol3: #ff7b6b
errcol: #da4939

6
themes/brogrammer Normal file
View File

@ -0,0 +1,6 @@
bgcol: #131313
fgcol: #d6dbe5
hicol: #d6dbe5
hicol2: #a12a25
hicol3: #de352e
errcol: #f81118

6
themes/c64 Normal file
View File

@ -0,0 +1,6 @@
bgcol: #40318d
fgcol: #7869c4
hicol: #ffffff
hicol2: #72364d
hicol3: #883932
errcol: #883932

6
themes/cai Normal file
View File

@ -0,0 +1,6 @@
bgcol: #09111a
fgcol: #d9e6f2
hicol: #808080
hicol2: #a56779
hicol3: #e98da3
errcol: #ca274d

6
themes/chalk Normal file
View File

@ -0,0 +1,6 @@
bgcol: #2D2D2D
fgcol: #D4D4D4
hicol: #D4D4D4
hicol2: #b97070
hicol3: #F58E8E
errcol: #F58E8E

6
themes/chalkboard Normal file
View File

@ -0,0 +1,6 @@
bgcol: #29262f
fgcol: #d9e6f2
hicol: #d9d9d9
hicol2: #a58285
hicol3: #dbaaaa
errcol: #c37372

6
themes/ciapre Normal file
View File

@ -0,0 +1,6 @@
bgcol: #191c27
fgcol: #aea47a
hicol: #aea47f
hicol2: #7f2f30
hicol3: #ac3835
errcol: #810009

6
themes/clone-of-ubuntu Normal file
View File

@ -0,0 +1,6 @@
bgcol: #300a24
fgcol: #ffffff
hicol: #D3D7CF
hicol2: #b51f27
hicol3: #EF2929
errcol: #CC0000

6
themes/clrs Normal file
View File

@ -0,0 +1,6 @@
bgcol: #ffffff
fgcol: #262626
hicol: #b3b3b3
hicol2: #fc4f5b
hicol3: #fb0416
errcol: #f8282a

6
themes/cobalt-neon Normal file
View File

@ -0,0 +1,6 @@
bgcol: #142838
fgcol: #8ff586
hicol: #ba46b2
hicol2: #9a2e31
hicol3: #d4312e
errcol: #ff2320

6
themes/cobalt2 Normal file
View File

@ -0,0 +1,6 @@
bgcol: #132738
fgcol: #ffffff
hicol: #bbbbbb
hicol2: #b01520
hicol3: #f40e17
errcol: #ff0000

6
themes/crayon-pony-fish Normal file
View File

@ -0,0 +1,6 @@
bgcol: #150707
fgcol: #68525a
hicol: #68525a
hicol2: #901c43
hicol3: #c5255d
errcol: #91002b

6
themes/dark-pastel Normal file
View File

@ -0,0 +1,6 @@
bgcol: #000000
fgcol: #ffffff
hicol: #bbbbbb
hicol2: #b23b3b
hicol3: #ff5555
errcol: #ff5555

6
themes/darkside Normal file
View File

@ -0,0 +1,6 @@
bgcol: #222324
fgcol: #bababa
hicol: #bababa
hicol2: #a64942
hicol3: #e05a4f
errcol: #e8341c

6
themes/default Normal file
View File

@ -0,0 +1,6 @@
bgcol: #002B36
fgcol: #839496
hicol: #EEE8D5
hicol2: #976164
hicol3: #D87979
errcol: #DC322F

6
themes/desert Normal file
View File

@ -0,0 +1,6 @@
bgcol: #333333
fgcol: #ffffff
hicol: #f5deb3
hicol2: #c14a4a
hicol3: #ff5555
errcol: #ff2b2b

6
themes/dimmed-monokai Normal file
View File

@ -0,0 +1,6 @@
bgcol: #1f1f1f
fgcol: #b9bcba
hicol: #b9bcba
hicol2: #b9091f
hicol3: #fb001f
errcol: #be3f48

6
themes/dracula Normal file
View File

@ -0,0 +1,6 @@
bgcol: #282a36
fgcol: #94A3A5
hicol: #94A3A5
hicol2: #be484b
hicol3: #ff5555
errcol: #ff5555

6
themes/earthsong Normal file
View File

@ -0,0 +1,6 @@
bgcol: #292520
fgcol: #e5c7a9
hicol: #e5c6aa
hicol2: #be5148
hicol3: #ff645a
errcol: #c94234

6
themes/elemental Normal file
View File

@ -0,0 +1,6 @@
bgcol: #22211d
fgcol: #807a74
hicol: #807974
hicol2: #a64126
hicol3: #e0502a
errcol: #98290f

6
themes/elementary Normal file
View File

@ -0,0 +1,6 @@
bgcol: #101010
fgcol: #f2f2f2
hicol: #f2f2f2
hicol2: #b72a19
hicol3: #ff361e
errcol: #e1321a

6
themes/elic Normal file
View File

@ -0,0 +1,6 @@
bgcol: #4A453E
fgcol: #f2f2f2
hicol: #2aa7e7
hicol2: #c83a27
hicol3: #ff361e
errcol: #e1321a

6
themes/elio Normal file
View File

@ -0,0 +1,6 @@
bgcol: #041A3B
fgcol: #f2f2f2
hicol: #f2f2f2
hicol2: #b32d26
hicol3: #ff361e
errcol: #e1321a

6
themes/espresso Normal file
View File

@ -0,0 +1,6 @@
bgcol: #323232
fgcol: #ffffff
hicol: #eeeeec
hicol2: #b71717
hicol3: #f00c0c
errcol: #d25252

6
themes/espresso-libre Normal file
View File

@ -0,0 +1,6 @@
bgcol: #2a211c
fgcol: #b8a898
hicol: #d3d7cf
hicol2: #b32625
hicol3: #ef2929
errcol: #cc0000

6
themes/fishtank Normal file
View File

@ -0,0 +1,6 @@
bgcol: #232537
fgcol: #ecf0fe
hicol: #ecf0fc
hicol2: #a33f71
hicol3: #da4b8a
errcol: #c6004a

6
themes/flat Normal file
View File

@ -0,0 +1,6 @@
bgcol: #1F2D3A
fgcol: #1abc9c
hicol: #bdc3c7
hicol2: #ab423b
hicol3: #e74c3c
errcol: #c0392b

6
themes/flatland Normal file
View File

@ -0,0 +1,6 @@
bgcol: #1d1f21
fgcol: #b8dbef
hicol: #ffffff
hicol2: #9b2623
hicol3: #d22a24
errcol: #f18339

6
themes/foxnightly Normal file
View File

@ -0,0 +1,6 @@
bgcol: #2A2A2E
fgcol: #D7D7DB
hicol: #FFFFFF
hicol2: #92393a
hicol3: #BF4040
errcol: #B98EFF

6
themes/freya Normal file
View File

@ -0,0 +1,6 @@
bgcol: #252e32
fgcol: #94a3a5
hicol: #94a3a5
hicol2: #99421e
hicol3: #cb4b16
errcol: #dc322f

6
themes/frontend-delight Normal file
View File

@ -0,0 +1,6 @@
bgcol: #1b1c1d
fgcol: #adadad
hicol: #adadad
hicol2: #b4371a
hicol3: #f74319
errcol: #f8511b

View File

@ -0,0 +1,6 @@
bgcol: #251200
fgcol: #dec165
hicol: #ddc265
hicol2: #ab4413
hicol3: #e55a1c
errcol: #d6262b

6
themes/frontend-galaxy Normal file
View File

@ -0,0 +1,6 @@
bgcol: #1d2837
fgcol: #ffffff
hicol: #bbbbbb
hicol2: #b76e74
hicol3: #fa8c8f
errcol: #f9555f

6
themes/github Normal file
View File

@ -0,0 +1,6 @@
bgcol: #f4f4f4
fgcol: #3e3e3e
hicol: #ffffff
hicol2: #e44949
hicol3: #de0000
errcol: #970b16

6
themes/gooey Normal file
View File

@ -0,0 +1,6 @@
bgcol: #0D101B
fgcol: #EBEEF9
hicol: #858893
hicol2: #aa5f77
hicol3: #ee829f
errcol: #BB4F6C

6
themes/google-dark Normal file
View File

@ -0,0 +1,6 @@
bgcol: #1D1F21
fgcol: #B4B7B4
hicol: #C5C8C6
hicol2: #972d28
hicol3: #CC342B
errcol: #CC342B

6
themes/google-light Normal file
View File

@ -0,0 +1,6 @@
bgcol: #FFFFFF
fgcol: #373B41
hicol: #373B41
hicol2: #db706a
hicol3: #CC342B
errcol: #CC342B

6
themes/grape Normal file
View File

@ -0,0 +1,6 @@
bgcol: #171423
fgcol: #9f9fa1
hicol: #9e9ea0
hicol2: #ae5576
hicol3: #f0729a
errcol: #ed2261

6
themes/grass Normal file
View File

@ -0,0 +1,6 @@
bgcol: #13773d
fgcol: #fff0a5
hicol: #bbbbbb
hicol2: #882312
hicol3: #bb0000
errcol: #bb0000

6
themes/gruvbox Normal file
View File

@ -0,0 +1,6 @@
bgcol: #fbf1c7
fgcol: #3c3836
hicol: #7c6f64
hicol2: #b9483f
hicol3: #9d0006
errcol: #cc241d

6
themes/gruvbox-dark Normal file
View File

@ -0,0 +1,6 @@
bgcol: #282828
fgcol: #ebdbb2
hicol: #a89984
hicol2: #bb3f30
hicol3: #fb4934
errcol: #cc241d

6
themes/hardcore Normal file
View File

@ -0,0 +1,6 @@
bgcol: #121212
fgcol: #a0a0a0
hicol: #ccccc6
hicol2: #b74c73
hicol3: #ff669d
errcol: #f92672

6
themes/harper Normal file
View File

@ -0,0 +1,6 @@
bgcol: #010101
fgcol: #a8a49d
hicol: #a8a49d
hicol2: #ad7f2c
hicol3: #f8b63f
errcol: #f8b63f

6
themes/hemisu-dark Normal file
View File

@ -0,0 +1,6 @@
bgcol: #000000
fgcol: #FFFFFF
hicol: #EDEDED
hicol2: #954151
hicol3: #D65E75
errcol: #FF0054

6
themes/hemisu-light Normal file
View File

@ -0,0 +1,6 @@
bgcol: #EFEFEF
fgcol: #444444
hicol: #999999
hicol2: #dd899a
hicol3: #D65E76
errcol: #FF0055

6
themes/highway Normal file
View File

@ -0,0 +1,6 @@
bgcol: #222225
fgcol: #ededed
hicol: #ededed
hicol2: #b2621b
hicol3: #f07e18
errcol: #d00e18

6
themes/hipster-green Normal file
View File

@ -0,0 +1,6 @@
bgcol: #100b05
fgcol: #84c138
hicol: #bfbfbf
hicol2: #a50301
hicol3: #e50000
errcol: #b6214a

6
themes/homebrew Normal file
View File

@ -0,0 +1,6 @@
bgcol: #000000
fgcol: #00ff00
hicol: #bfbfbf
hicol2: #a00000
hicol3: #e50000
errcol: #990000

6
themes/hurtado Normal file
View File

@ -0,0 +1,6 @@
bgcol: #000000
fgcol: #dbdbdb
hicol: #cbcccb
hicol2: #951400
hicol3: #d51d00
errcol: #ff1b00

6
themes/hybrid Normal file
View File

@ -0,0 +1,6 @@
bgcol: #141414
fgcol: #94a3a5
hicol: #969896
hicol2: #944d4d
hicol3: #cc6666
errcol: #A54242

6
themes/ibm3270 Normal file
View File

@ -0,0 +1,6 @@
bgcol: #000000
fgcol: #FDFDFD
hicol: #A5A5A5
hicol2: #a75b5b
hicol3: #EF8383
errcol: #F01818

6
themes/ic-green-ppl Normal file
View File

@ -0,0 +1,6 @@
bgcol: #3a3d3f
fgcol: #d9efd3
hicol: #e0ffef
hicol2: #86c43e
hicol3: #a7ff3f
errcol: #fb002a

6
themes/ic-orange-ppl Normal file
View File

@ -0,0 +1,6 @@
bgcol: #262626
fgcol: #ffcb83
hicol: #ffc88a
hicol2: #bd6d54
hicol3: #ff8c68
errcol: #c13900

6
themes/idle-toes Normal file
View File

@ -0,0 +1,6 @@
bgcol: #323232
fgcol: #ffffff
hicol: #eeeeec
hicol2: #b75d5d
hicol3: #f07070
errcol: #d25252

6
themes/ir-black Normal file
View File

@ -0,0 +1,6 @@
bgcol: #000000
fgcol: #eeeeee
hicol: #eeeeee
hicol2: #b27f7b
hicol3: #ffb6b0
errcol: #ff6c60

6
themes/jackie-brown Normal file
View File

@ -0,0 +1,6 @@
bgcol: #2c1d16
fgcol: #ffcc2f
hicol: #bfbfbf
hicol2: #ad0806
hicol3: #e50000
errcol: #ef5734

6
themes/japanesque Normal file
View File

@ -0,0 +1,6 @@
bgcol: #1e1e1e
fgcol: #f7f6ec
hicol: #fafaf6
hicol2: #9b6d7d
hicol3: #d18fa6
errcol: #cf3f61

6
themes/jellybeans Normal file
View File

@ -0,0 +1,6 @@
bgcol: #121212
fgcol: #dedede
hicol: #dedede
hicol2: #b77676
hicol3: #ffa1a1
errcol: #e27373

6
themes/jup Normal file
View File

@ -0,0 +1,6 @@
bgcol: #758480
fgcol: #23476a
hicol: #f2f2f2
hicol2: #d578a7
hicol3: #ff74b9
errcol: #dd006f

6
themes/kibble Normal file
View File

@ -0,0 +1,6 @@
bgcol: #0e100a
fgcol: #f7f7f7
hicol: #e2d1e3
hicol2: #ac1357
hicol3: #f01578
errcol: #c70031

View File

@ -0,0 +1,6 @@
bgcol: #222222
fgcol: #959595
hicol: #3c3d3d
hicol2: #9d222b
hicol3: #d3232f
errcol: #d45a60

6
themes/lavandula Normal file
View File

@ -0,0 +1,6 @@
bgcol: #050014
fgcol: #736e7d
hicol: #736e7d
hicol2: #9e384e
hicol3: #e05167
errcol: #7d1625

6
themes/liquid-carbon Normal file
View File

@ -0,0 +1,6 @@
bgcol: #303030
fgcol: #afc2c2
hicol: #bccccc
hicol2: #c02f2f
hicol3: #ff3030
errcol: #ff3030

View File

@ -0,0 +1,6 @@
bgcol: #000000
fgcol: #afc2c2
hicol: #bccccc
hicol2: #b22121
hicol3: #ff3030
errcol: #ff3030

6
themes/maia Normal file
View File

@ -0,0 +1,6 @@
bgcol: #31363B
fgcol: #BDX3C7
hicol: #E0E0E0
hicol2: #9d3630
hicol3: #CC372C
errcol: #BA2922

6
themes/man-page Normal file
View File

@ -0,0 +1,6 @@
bgcol: #fef49c
fgcol: #000000
hicol: #cccccc
hicol2: #ec492e
hicol3: #e50000
errcol: #cc0000

6
themes/mar Normal file
View File

@ -0,0 +1,6 @@
bgcol: #ffffff
fgcol: #23476a
hicol: #f8f8f8
hicol2: #dc9dbc
hicol3: #cd73a0
errcol: #b5407b

6
themes/material Normal file
View File

@ -0,0 +1,6 @@
bgcol: #1E282C
fgcol: #C3C7D1
hicol: #FFFFFF
hicol2: #ad4f58
hicol3: #EB606B
errcol: #EB606B

6
themes/mathias Normal file
View File

@ -0,0 +1,6 @@
bgcol: #000000
fgcol: #bbbbbb
hicol: #f2f2f2
hicol2: #b23b3b
hicol3: #ff5555
errcol: #e52222

6
themes/medallion Normal file
View File

@ -0,0 +1,6 @@
bgcol: #1d1908
fgcol: #cac296
hicol: #cac29a
hicol2: #bb6d35
hicol3: #ff9149
errcol: #b64c00

6
themes/misterioso Normal file
View File

@ -0,0 +1,6 @@
bgcol: #2d3743
fgcol: #e1e1e0
hicol: #e1e1e0
hicol2: #c03342
hicol3: #ff3242
errcol: #ff4242

6
themes/miu Normal file
View File

@ -0,0 +1,6 @@
bgcol: #0d1926
fgcol: #d9e6f2
hicol: #d9d9d9
hicol2: #9d8b8f
hicol3: #dbbdbd
errcol: #b87a7a

6
themes/molokai Normal file
View File

@ -0,0 +1,6 @@
bgcol: #1b1d1e
fgcol: #BBBBBB
hicol: #BBBBBB
hicol2: #7550b5
hicol3: #9D66F6
errcol: #7325FA

Some files were not shown because too many files have changed in this diff Show More