made the pack completely portable and wrote relevent bat files to go with it

This commit is contained in:
Draqoken
2025-04-09 17:04:56 +03:00
parent 5e77d7e9cf
commit 5e4144c3c0
7417 changed files with 2181044 additions and 19 deletions

View File

@@ -0,0 +1,21 @@
# source: https://github.com/dracula/mintty
# MIT License
ForegroundColour=248,248,242
BackgroundColour=40,42,54
Black=0,0,0
BoldBlack=104,104,104
Red=255,85,85
BoldRed=255,110,103
Green=80,250,123
BoldGreen=90,247,142
Yellow=241,250,140
BoldYellow=244,249,157
Blue=202,169,250
BoldBlue=202,169,250
Magenta=255,121,198
BoldMagenta=255,146,208
Cyan=139,233,253
BoldCyan=154,237,254
White=191,191,191
BoldWhite=230,230,230

View File

@@ -0,0 +1,22 @@
# source: https://github.com/geekjuice/flat-ui-mintty/
# MIT License
ForegroundColour= 236, 240, 241
BackgroundColour= 24, 24, 24
CursorColour= 211, 84, 0
BoldBlack= 52, 73, 94
Black= 44, 62, 80
BoldRed= 231, 76, 60
Red= 192, 57, 43
BoldGreen= 46, 204, 113
Green= 39, 174, 96
BoldYellow= 241, 196, 15
Yellow= 243, 156, 18
BoldBlue= 52, 152, 219
Blue= 41, 128, 185
BoldMagenta= 155, 89, 182
Magenta= 142, 68, 173
BoldCyan= 26, 188, 156
Cyan= 122, 160, 133
BoldWhite= 236, 240, 241
White= 189, 195, 199

View File

@@ -0,0 +1,19 @@
ForegroundColour=235,219,178
BackgroundColour=29,32,33
CursorColour=253,157,79
Black=40,40,40
BoldBlack=146,131,116
Red=204,36,29
BoldRed=251,73,52
Green=152,151,26
BoldGreen=184,187,38
Yellow=215,153,33
BoldYellow=250,189,47
Blue=69,133,136
BoldBlue=131,165,152
Magenta=177,98,134
BoldMagenta=211,134,155
Cyan=104,157,106
BoldCyan=142,192,124
White=168,153,132
BoldWhite=235,219,178

View File

@@ -0,0 +1,50 @@
# "helmholtz" colour theme for mintty
#
# Copyright (C) 2022 Andy Koppe.
# Licensed under the terms of the MIT License.
#
# The aim of this theme is to provide vibrant colours where the normal and bold
# levels each have approximately equal brightness, with the exception of blue,
# which is somewhat darker than the others to aid its legibility on light
# backgrounds. Additionally, blue, red, magenta and grey have darker variants
# for use as background colours to help legibility of light text on them.
#
# To level the colours, their luminance was calculated as follows:
# - Gamma-expand the sRGB components by dividing each by 255 and applying the
# sRGB transfer function (which approximately means applying exponent 2.2).
# - Combine the components with formula Y = 0.2126 R + 0.7152 G + 0.0722 B.
# - Gamma-compress with the reverse transfer function (approximately: apply
# exponent 1/2.2).
#
# https://en.wikipedia.org/wiki/SRGB
#
# The colours were then adjusted to achieve equal luminance. However, that does
# not actually yield colours with equal apparent brightness. This is due to the
# "Helmholtz-Kohlrausch effect", which means that some saturated colours appear
# brighter than others to the human eye. The theme is named after that.
#
# https://en.wikipedia.org/wiki/Helmholtz-Kohlrausch_effect
#
# There doesn't appear to be a generally valid model for compensating for the
# effect, as it depends on observer, display device, and viewing environment.
# Hence, correction factors were determined experimentally, ranging from 1.0
# for yellow to 1.45 for red, and the colour components adjusted accordingly.
# Of course, that is a highly subjective process ...
Black=0,0,0
Red=212,44,58;162,30,41
Green=28,168,0
Yellow=192,160,0
Blue=0,93,255;0,32,192
Magenta=177,72,198;134,54,150
Cyan=0,168,154
White=191,191,191
BoldBlack=96,96,96;72,72,72
BoldRed=255,118,118
BoldGreen=0,242,0
BoldYellow=242,242,0
BoldBlue=125,151,255
BoldMagenta=255,112,255
BoldCyan=0,240,240
BoldWhite=255,255,255

View File

@@ -0,0 +1,35 @@
# https://en.wikipedia.org/wiki/Web_colors#HTML_color_names
# Black #000000 (black)
Black = #000000
# Maroon #800000 (low red)
Red = #800000
# Green #008000 (low green)
Green = #008000
# Olive #808000 (brown)
Yellow = #808000
# Navy #000080 (low blue)
Blue = #000080
# Purple #800080 (low magenta)
Magenta = #800080
# Teal #008080 (low cyan)
Cyan = #008080
# Silver #C0C0C0 (light gray)
White = #C0C0C0
# Gray #808080 (dark gray)
BoldBlack = #808080
# Red #FF0000 (high red)
BoldRed = #FF0000
# Lime #00FF00 (high green); green
BoldGreen = #00FF00
# Yellow #FFFF00 (yellow)
BoldYellow = #FFFF00
# Blue #0000FF (high blue)
BoldBlue = #0000FF
# Fuchsia #FF00FF (high magenta); magenta
BoldMagenta = #FF00FF
# Aqua #00FFFF (high cyan); cyan
BoldCyan = #00FFFF
# White #FFFFFF (white)
BoldWhite = #FFFFFF

View File

@@ -0,0 +1,52 @@
# "kohlrausch" colour theme for mintty
#
# Copyright (C) 2022 Andy Koppe.
# Licensed under the terms of the MIT License.
#
# This is a variant of the "helmholtz" theme that has been designed for use
# with a dark text colour and light background, by darkening the foreground
# variants of the normal colours and brightening the background ones.
#
# To level the colours, their luminance was calculated as follows:
# - Gamma-expand the sRGB components by dividing each by 255 and applying the
# sRGB transfer function (which approximately means applying exponent 2.2).
# - Combine the components with formula Y = 0.2126 R + 0.7152 G + 0.0722 B.
# - Gamma-compress with the reverse transfer function (approximately: apply
# exponent 1/2.2).
#
# https://en.wikipedia.org/wiki/SRGB
#
# The colours were then adjusted to achieve equal luminance. However, that does
# not actually yield colours with equal apparent brightness. This is due to the
# "Helmholtz-Kohlrausch effect", which means that some saturated colours appear
# brighter than others to the human eye. The theme is named after that.
#
# https://en.wikipedia.org/wiki/Helmholtz-Kohlrausch_effect
#
# There doesn't appear to be a generally valid model for compensating for the
# effect, as it depends on observer, display device, and viewing environment.
# Hence, correction factors were determined experimentally, ranging from 1.0
# for yellow to 1.45 for red, and the colour components adjusted accordingly.
# Of course, that is a highly subjective process ...
ForegroundColour=0,0,0
BackgroundColour=255,255,255
CursorColour=0,0,0
Black=0,0,0
Red=162,30,41;212,44,58
Green=21,126,0;28,168,0
Yellow=144,120,0;192,160,0
Blue=0,32,192;0,93,255
Magenta=134,54,150;177,72,198
Cyan=0,126,115;0,168,154
White=191,191,191
BoldBlack=96,96,96;127,127,127
BoldRed=255,118,118
BoldGreen=0,242,0
BoldYellow=242,242,0
BoldBlue=125,151,255
BoldMagenta=255,112,255
BoldCyan=0,240,240
BoldWhite=255,255,255

View File

@@ -0,0 +1,42 @@
# "luminous" colour theme for mintty
#
# The aim of this theme is to provide vibrant colours where the normal and bold
# levels each have approximately equal luminance. The variants of each colour
# have slightly different hues to help distinguish them.
#
# To level the colours, their luminance was calculated as follows:
# - Gamma-expand the sRGB components by dividing each by 255 and applying the
# sRGB transfer function (which approximately means applying exponent 2.2).
# - Combine the components with formula Y = 0.2126 R + 0.7152 G + 0.0722 B.
# - Gamma-compress with the reverse transfer function (approximately: apply
# exponent 1/2.2).
#
# https://en.wikipedia.org/wiki/SRGB
#
# The colours were then adjusted to achieve equal luminance. However, that does
# not actually yield colours with equal apparent brightness. This is due to the
# "Helmholtz-Kohlrausch effect", which means that some saturated colours appear
# brighter than others to the human eye:
#
# https://en.wikipedia.org/wiki/Helmholtz-Kohlrausch_effect
#
# See also the "helmholtz" and "kohlrausch" themes that attempt to compensate
# for that.
Black=0,0,0
Red=228,0,19
Green=22,132,0
Yellow=135,112,0
Blue=0,102,255
Magenta=190,0,228
Cyan=0,128,117
White=191,191,191
BoldBlack=96,96,96
BoldRed=255,127,127
BoldGreen=0,192,0
BoldYellow=171,171,0
BoldBlue=85,170,255
BoldMagenta=255,102,255
BoldCyan=0,184,184
BoldWhite=255,255,255

View File

@@ -0,0 +1,18 @@
# config.c
Black = #000000
Red = #BF0000
Green = #00BF00
Yellow = #BFBF00
Blue = #0000BF
Magenta = #BF00BF
Cyan = #00BFBF
White = #BFBFBF
BoldBlack = #404040
BoldRed = #FF4040
BoldGreen = #40FF40
BoldYellow = #FFFF40
BoldBlue = #6060FF
BoldMagenta = #FF40FF
BoldCyan = #40FFFF
BoldWhite = #FFFFFF

View File

@@ -0,0 +1,21 @@
# source: https://iterm2colorschemes.com/
BackgroundColour=31,31,31
ForegroundColour=185,188,186
CursorColour=248,62,25
Black=58,61,67
BoldBlack=136,137,135
Red=190,63,72
BoldRed=251,0,31
Green=135,154,59
BoldGreen=15,114,47
Yellow=197,166,53
BoldYellow=196,112,51
Blue=79,118,161
BoldBlue=24,109,227
Magenta=133,92,141
BoldMagenta=251,0,103
Cyan=87,143,164
BoldCyan=46,112,109
White=185,188,186
BoldWhite=253,255,185

View File

@@ -0,0 +1,22 @@
# source: https://github.com/arcticicestudio/nord-mintty
# Apache License
BackgroundColour=46,52,64
ForegroundColour=216,222,233
CursorColour=216,222,233
Black=59,66,82
BoldBlack=76,86,106
Red=191,97,106
BoldRed=191,97,106
Green=163,190,140
BoldGreen=163,190,140
Yellow=235,203,139
BoldYellow=235,203,139
Blue=129,161,193
BoldBlue=129,161,193
Magenta=180,142,173
BoldMagenta=180,142,173
Cyan=136,192,208
BoldCyan=143,188,187
White=229,233,240
BoldWhite=236,239,244

View File

@@ -0,0 +1,23 @@
# source: http://www.rosipov.com/blog/mintty-color-scheme-cygwin/
# permission: https://github.com/ruslanosipov/ruslanosipov.github.io/issues/1
ForegroundColour = 131, 148, 150
BackgroundColour = 0, 0, 0
CursorColour = 220, 50, 47
Black = 7, 54, 66
BoldBlack = 0, 43, 54
Red = 220, 50, 47
BoldRed = 203, 75, 22
Green = 0, 200, 132
BoldGreen = 0, 200, 132
Yellow = 204, 204, 102
BoldYellow = 204, 204, 102
Blue = 102, 153, 204
BoldBlue = 102, 153, 204
Magenta = 211, 54, 130
BoldMagenta = 108, 113, 196
Cyan = 42, 161, 152
BoldCyan = 147, 161, 161
White = 238, 232, 213
BoldWhite = 253, 246, 227

View File

@@ -0,0 +1,23 @@
# Based off of the theme for vim: https://github.com/jacoborus/tender.vim
# Mintty theme converted by: https://github.com/compEng0001/tender-mintty
# Licence: MIT
BackgroundColour=28,28,28
ForegroundColour=197,200,198
CursorColour=197,200,198
Black=40,40,40
BoldBlack=60,56,54
Red=251,73,52
BoldRed=204,36,29
Green=184,187,38
BoldGreen=152,151,26
Yellow=250,189,47
BoldYellow=215,153,33
Blue=131,165,152
BoldBlue=69,133,136
Magenta=211,134,155
BoldMagenta=177,98,134
Cyan=142,192,155
BoldCyan=104,157,106
White=235,219,178
BoldWhite=251,241,199

View File

@@ -0,0 +1,29 @@
# https://en.wikipedia.org/wiki/Video_Graphics_Array#Color_palette
Black = #000000
Blue = #0000aa
Green = #00aa00
Cyan = #00aaaa
Red = #aa0000
Magenta = #aa00aa
# brown:
Yellow = #aa5500
# gray:
White = #aaaaaa
# dark gray:
BoldBlack = #555555
# bright blue:
BoldBlue = #5555ff
# bright green:
BoldGreen = #55ff55
# bright cyan:
BoldCyan = #55ffff
# bright red:
BoldRed = #ff5555
# bright magenta:
BoldMagenta = #ff55ff
# yellow:
BoldYellow = #ffff55
# white:
BoldWhite = #ffffff

View File

@@ -0,0 +1,18 @@
# https://blogs.msdn.microsoft.com/commandline/2017/08/02/updating-the-windows-console-colors/
Black = 12,12,12
Blue = 0,55,218
Green = 19,161,14
Cyan = 58,150,221
Red = 197,15,31
Magenta = 136,23,152
Yellow = 193,156,0
White = 204,204,204
BoldBlack = 118,118,118
BoldBlue = 59,120,255
BoldGreen = 22,198,12
BoldCyan = 97,214,214
BoldRed = 231,72,86
BoldMagenta = 180,0,158
BoldYellow = 249,241,165
BoldWhite = 242,242,242

View File

@@ -0,0 +1,35 @@
# xterm: XTerm-col.ad, charproc.c; /usr/share/X11/rgb.txt
#*VT100*color0: black
Black = 0,0,0
#*VT100*color1: red3
Red = 205,0,0
#*VT100*color2: green3
Green = 0,205,0
#*VT100*color3: yellow3
Yellow = 205,205,0
#*VT100*color4: blue2
Blue = 0,0,238
#*VT100*color5: magenta3
Magenta = 205,0,205
#*VT100*color6: cyan3
Cyan = 0,205,205
#*VT100*color7: gray90
White = 229,229,229
#*VT100*color8: gray50
BoldBlack = 127,127,127
#*VT100*color9: red
BoldRed = 255,0,0
#*VT100*color10: green
BoldGreen = 0,255,0
#*VT100*color11: yellow
BoldYellow = 255,255,0
#*VT100*color12: rgb:5c/5c/ff
BoldBlue = rgb:5c/5c/ff
#*VT100*color13: magenta
BoldMagenta = 255,0,255
#*VT100*color14: cyan
BoldCyan = 0,255,255
#*VT100*color15: white
BoldWhite = 255,255,255