mirror of
https://github.com/ethauvin/warp-themes.git
synced 2025-04-25 17:17:11 -07:00
add monokai pro themes (#13)
This commit is contained in:
parent
7ac047f87d
commit
a09d7ed9c2
13 changed files with 715 additions and 1 deletions
|
@ -5,6 +5,7 @@ Themes in this directory were sourced and auto-generated based on the Alacritty
|
|||
Repo: https://github.com/eendroroy/alacritty-theme
|
||||
|Theme name | Preview|
|
||||
| --- | --- |
|
||||
|**[Cobalt2](Cobalt2.yaml)**:|<img src='previews/Cobalt2.yaml.svg' width='300'>|
|
||||
|**[Afterglow](afterglow.yaml)**:|<img src='previews/afterglow.yaml.svg' width='300'>|
|
||||
|**[Argonaut](argonaut.yaml)**:|<img src='previews/argonaut.yaml.svg' width='300'>|
|
||||
|**[Ayu Dark](ayu_dark.yaml)**:|<img src='previews/ayu_dark.yaml.svg' width='300'>|
|
||||
|
@ -12,7 +13,6 @@ Repo: https://github.com/eendroroy/alacritty-theme
|
|||
|**[Breeze](breeze.yaml)**:|<img src='previews/breeze.yaml.svg' width='300'>|
|
||||
|**[Campbell](campbell.yaml)**:|<img src='previews/campbell.yaml.svg' width='300'>|
|
||||
|**[Challenger Deep](challenger_deep.yaml)**:|<img src='previews/challenger_deep.yaml.svg' width='300'>|
|
||||
|**[Cobalt2](cobalt2.yaml)**:|<img src='previews/cobalt2.yaml.svg' width='300'>|
|
||||
|**[Cobalt Next](cobalt_next.yaml)**:|<img src='previews/cobalt_next.yaml.svg' width='300'>|
|
||||
|**[Cyber Punk Neon](cyber_punk_neon.yaml)**:|<img src='previews/cyber_punk_neon.yaml.svg' width='300'>|
|
||||
|**[Darcula](darcula.yaml)**:|<img src='previews/darcula.yaml.svg' width='300'>|
|
||||
|
@ -37,6 +37,12 @@ Repo: https://github.com/eendroroy/alacritty-theme
|
|||
|**[Low Contrast](low_contrast.yaml)**:|<img src='previews/low_contrast.yaml.svg' width='300'>|
|
||||
|**[Material Theme](material_theme.yaml)**:|<img src='previews/material_theme.yaml.svg' width='300'>|
|
||||
|**[Material Theme Mod](material_theme_mod.yaml)**:|<img src='previews/material_theme_mod.yaml.svg' width='300'>|
|
||||
|**[Monokai-pro Octagon](monokai-pro_octagon.yml)**:|<img src='previews/monokai-pro_octagon.yml.svg' width='300'>|
|
||||
|**[Monokai Pro](monokai_pro.yaml)**:|<img src='previews/monokai_pro.yaml.svg' width='300'>|
|
||||
|**[Monokai Pro Classic](monokai_pro_classic.yaml)**:|<img src='previews/monokai_pro_classic.yaml.svg' width='300'>|
|
||||
|**[Monokai Pro Machine](monokai_pro_machine.yaml)**:|<img src='previews/monokai_pro_machine.yaml.svg' width='300'>|
|
||||
|**[Monokai Pro Ristretto](monokai_pro_ristretto.yml)**:|<img src='previews/monokai_pro_ristretto.yml.svg' width='300'>|
|
||||
|**[Monokai Pro Spectrum](monokai_pro_spectrum.yml)**:|<img src='previews/monokai_pro_spectrum.yml.svg' width='300'>|
|
||||
|**[Night Owl](night_owl.yaml)**:|<img src='previews/night_owl.yaml.svg' width='300'>|
|
||||
|**[Nord](nord.yaml)**:|<img src='previews/nord.yaml.svg' width='300'>|
|
||||
|**[Oceanic Next](oceanic_next.yaml)**:|<img src='previews/oceanic_next.yaml.svg' width='300'>|
|
||||
|
|
28
standard/monokai-pro_octagon.yml
Normal file
28
standard/monokai-pro_octagon.yml
Normal file
|
@ -0,0 +1,28 @@
|
|||
# Accent color for UI elements
|
||||
accent: '#b2b9bd'
|
||||
# Terminal background color
|
||||
background: '#282a3a'
|
||||
# Whether the theme is lighter or darker.
|
||||
details: darker
|
||||
# The foreground color.
|
||||
foreground: '#eaf2f1'
|
||||
# Ansi escape colors.
|
||||
terminal_colors:
|
||||
bright:
|
||||
black: '#696d77'
|
||||
red: '#ff657a'
|
||||
green: '#bad761'
|
||||
yellow: '#ffd76d'
|
||||
blue: '#6ab0f3'
|
||||
magenta: '#c39ac9'
|
||||
cyan: '#9cd1bb'
|
||||
white: '#eaf2f1'
|
||||
normal:
|
||||
black: '#282a3a'
|
||||
red: '#ff657a'
|
||||
green: '#bad761'
|
||||
yellow: '#ffd76d'
|
||||
blue: '#6ab0f3'
|
||||
magenta: '#c39ac9'
|
||||
cyan: '#9cd1bb'
|
||||
white: '#eaf2f1'
|
28
standard/monokai_pro.yaml
Normal file
28
standard/monokai_pro.yaml
Normal file
|
@ -0,0 +1,28 @@
|
|||
# Accent color for UI elements
|
||||
accent: '#c1c0c0'
|
||||
# Terminal background color
|
||||
background: '#2d2a2e'
|
||||
# Whether the theme is lighter or darker.
|
||||
details: darker
|
||||
# The foreground color.
|
||||
foreground: '#fcfcfa'
|
||||
# Ansi escape colors.
|
||||
terminal_colors:
|
||||
bright:
|
||||
black: '#727072'
|
||||
red: '#ff6188'
|
||||
green: '#a9dc76'
|
||||
yellow: '#ffd866'
|
||||
blue: '#6ab0f3'
|
||||
magenta: '#ab9df2'
|
||||
cyan: '#78dce8'
|
||||
white: '#fcfcfa'
|
||||
normal:
|
||||
black: '#2d2a2e'
|
||||
red: '#ff6188'
|
||||
green: '#a9dc76'
|
||||
yellow: '#ffd866'
|
||||
blue: '#6ab0f3'
|
||||
magenta: '#ab9df2'
|
||||
cyan: '#78dce8'
|
||||
white: '#fcfcfa'
|
28
standard/monokai_pro_classic.yaml
Normal file
28
standard/monokai_pro_classic.yaml
Normal file
|
@ -0,0 +1,28 @@
|
|||
# Accent color for UI elements
|
||||
accent: '#c0c1b5'
|
||||
# Terminal background color
|
||||
background: '#272822'
|
||||
# Whether the theme is lighter or darker.
|
||||
details: darker
|
||||
# The foreground color.
|
||||
foreground: '#fdfff1'
|
||||
# Ansi escape colors.
|
||||
terminal_colors:
|
||||
bright:
|
||||
black: '#6e7066'
|
||||
red: '#f92672'
|
||||
green: '#a6e22e'
|
||||
yellow: '#a9dc76'
|
||||
blue: '#66d9ef'
|
||||
magenta: '#ab9df2'
|
||||
cyan: '#5ad4e6'
|
||||
white: '#fdfff1'
|
||||
normal:
|
||||
black: '#272822'
|
||||
red: '#f92672'
|
||||
green: '#a6e22e'
|
||||
yellow: '#a9dc76'
|
||||
blue: '#66d9ef'
|
||||
magenta: '#ab9df2'
|
||||
cyan: '#5ad4e6'
|
||||
white: '#fdfff1'
|
28
standard/monokai_pro_machine.yaml
Normal file
28
standard/monokai_pro_machine.yaml
Normal file
|
@ -0,0 +1,28 @@
|
|||
# Accent color for UI elements
|
||||
accent: '#b8c4c3'
|
||||
# Terminal background color
|
||||
background: '#273136'
|
||||
# Whether the theme is lighter or darker.
|
||||
details: darker
|
||||
# The foreground color.
|
||||
foreground: '#f2fffc'
|
||||
# Ansi escape colors.
|
||||
terminal_colors:
|
||||
bright:
|
||||
black: '#6b7678'
|
||||
red: '#ff6d7e'
|
||||
green: '#a2e57b'
|
||||
yellow: '#ffed72'
|
||||
blue: '#6ab0f3'
|
||||
magenta: '#baa0f8'
|
||||
cyan: '#7cd5f1'
|
||||
white: '#f2fffc'
|
||||
normal:
|
||||
black: '#273136'
|
||||
red: '#ff6d7e'
|
||||
green: '#a2e57b'
|
||||
yellow: '#ffed72'
|
||||
blue: '#6ab0f3'
|
||||
magenta: '#baa0f8'
|
||||
cyan: '#7cd5f1'
|
||||
white: '#f2fffc'
|
28
standard/monokai_pro_ristretto.yml
Normal file
28
standard/monokai_pro_ristretto.yml
Normal file
|
@ -0,0 +1,28 @@
|
|||
# Accent color for UI elements
|
||||
accent: '#c3b7b8'
|
||||
# Terminal background color
|
||||
background: '#2c2525'
|
||||
# Whether the theme is lighter or darker.
|
||||
details: darker
|
||||
# The foreground color.
|
||||
foreground: '#fff1f3'
|
||||
# Ansi escape colors.
|
||||
terminal_colors:
|
||||
bright:
|
||||
black: '#72696a'
|
||||
red: '#fd6883'
|
||||
green: '#adda78'
|
||||
yellow: '#f9cc6c'
|
||||
blue: '#6ab0f3'
|
||||
magenta: '#a8a9eb'
|
||||
cyan: '#85dacc'
|
||||
white: '#fff1f3'
|
||||
normal:
|
||||
black: '#2c2525'
|
||||
red: '#fd6883'
|
||||
green: '#adda78'
|
||||
yellow: '#f9cc6c'
|
||||
blue: '#6ab0f3'
|
||||
magenta: '#a8a9eb'
|
||||
cyan: '#85dacc'
|
||||
white: '#fff1f3'
|
28
standard/monokai_pro_spectrum.yml
Normal file
28
standard/monokai_pro_spectrum.yml
Normal file
|
@ -0,0 +1,28 @@
|
|||
# Accent color for UI elements
|
||||
accent: '#bab6c0'
|
||||
# Terminal background color
|
||||
background: '#222222'
|
||||
# Whether the theme is lighter or darker.
|
||||
details: darker
|
||||
# The foreground color.
|
||||
foreground: '#f7f1ff'
|
||||
# Ansi escape colors.
|
||||
terminal_colors:
|
||||
bright:
|
||||
black: '#69676c'
|
||||
red: '#fc618d'
|
||||
green: '#7bd88f'
|
||||
yellow: '#fce566'
|
||||
blue: '#6ab0f3'
|
||||
magenta: '#948ae3'
|
||||
cyan: '#5ad4e6'
|
||||
white: '#f7f1ff'
|
||||
normal:
|
||||
black: '#222222'
|
||||
red: '#fc618d'
|
||||
green: '#7bd88f'
|
||||
yellow: '#fce566'
|
||||
blue: '#6ab0f3'
|
||||
magenta: '#948ae3'
|
||||
cyan: '#5ad4e6'
|
||||
white: '#f7f1ff'
|
90
standard/previews/monokai-pro_octagon.yml.svg
Normal file
90
standard/previews/monokai-pro_octagon.yml.svg
Normal file
|
@ -0,0 +1,90 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145">
|
||||
<rect width="300" height="145" class="Dynamic" fill="#282a3a" rx="5" />
|
||||
|
||||
<!-- first command -->
|
||||
<text x="15" y="15" fill="#eaf2f1" font-size="0.6em" font-family="monospace" class="Dynamic">ls</text>
|
||||
<text x="15" y="30" fill="#6ab0f3" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
dir
|
||||
</text>
|
||||
<text x="65" y="30" fill="#ff657a" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
executable
|
||||
</text>
|
||||
<text x="175" y="30" fill="#eaf2f1" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
file
|
||||
</text>
|
||||
<line x1="0" y1="40" x2="300" y2="40" style="stroke-width:0.2" class="Dynamic" stroke="#eaf2f1"/>
|
||||
|
||||
<!-- second command -->
|
||||
<text x="15" y="55" fill="#eaf2f1" font-size="0.6em" font-family="monospace" class="Dynamic">bash ~/colors.sh</text>
|
||||
<text x="15" y="70" fill="#eaf2f1" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
normal:
|
||||
</text>
|
||||
<text x="55" y="70" fill="#282a3a" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
black
|
||||
</text>
|
||||
<text x="85" y="70" fill="#ff657a" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
red
|
||||
</text>
|
||||
<text x="105" y="70" fill="#bad761" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
green
|
||||
</text>
|
||||
<text x="135" y="70" fill="#ffd76d" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
yellow
|
||||
</text>
|
||||
<text x="170" y="70" fill="#6ab0f3" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
blue
|
||||
</text>
|
||||
<text x="195" y="70" fill="#c39ac9" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
magenta
|
||||
</text>
|
||||
<text x="235" y="70" fill="#9cd1bb" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
cyan
|
||||
</text>
|
||||
<text x="260" y="70" fill="#eaf2f1" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
white
|
||||
</text>
|
||||
<text x="15" y="85" fill="#eaf2f1" font-size="0.6em" font-family="monospace" class='Dynamic'>
|
||||
bright:
|
||||
</text>
|
||||
<text x="55" y="85" fill="#696d77" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
black
|
||||
</text>
|
||||
<text x="85" y="85" fill="#ff657a" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
red
|
||||
</text>
|
||||
<text x="105" y="85" fill="#bad761" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
green
|
||||
</text>
|
||||
<text x="135" y="85" fill="#ffd76d" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
yellow
|
||||
</text>
|
||||
<text x="170" y="85" fill="#6ab0f3" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
blue
|
||||
</text>
|
||||
<text x="195" y="85" fill="#c39ac9" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
magenta
|
||||
</text>
|
||||
<text x="235" y="85" fill="#9cd1bb" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
cyan
|
||||
</text>
|
||||
<text x="260" y="85" fill="#eaf2f1" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
white
|
||||
</text>
|
||||
<line x1="0" y1="95" x2="300" y2="95" style="stroke-width:0.2" class="Dynamic" stroke="#eaf2f1" />
|
||||
|
||||
<!-- prompt -->
|
||||
<text x="15" y="110" fill="#c39ac9" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
~/project
|
||||
</text>
|
||||
<text x="65" y="110" fill="#bad761" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
git(
|
||||
</text>
|
||||
<text x="85" y="110" fill="#ffd76d" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
main
|
||||
</text>
|
||||
<text x="113" y="110" fill="#bad761" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
)
|
||||
</text>
|
||||
<!-- cursor -->
|
||||
<line x1="15" y1="120" x2="15" y2="130" style="stroke-width:2" class="Dynamic" stroke="#b2b9bd" />
|
||||
</svg>
|
After Width: | Height: | Size: 3.4 KiB |
90
standard/previews/monokai_pro.yaml.svg
Normal file
90
standard/previews/monokai_pro.yaml.svg
Normal file
|
@ -0,0 +1,90 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145">
|
||||
<rect width="300" height="145" class="Dynamic" fill="#2d2a2e" rx="5" />
|
||||
|
||||
<!-- first command -->
|
||||
<text x="15" y="15" fill="#fcfcfa" font-size="0.6em" font-family="monospace" class="Dynamic">ls</text>
|
||||
<text x="15" y="30" fill="#6ab0f3" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
dir
|
||||
</text>
|
||||
<text x="65" y="30" fill="#ff6188" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
executable
|
||||
</text>
|
||||
<text x="175" y="30" fill="#fcfcfa" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
file
|
||||
</text>
|
||||
<line x1="0" y1="40" x2="300" y2="40" style="stroke-width:0.2" class="Dynamic" stroke="#fcfcfa"/>
|
||||
|
||||
<!-- second command -->
|
||||
<text x="15" y="55" fill="#fcfcfa" font-size="0.6em" font-family="monospace" class="Dynamic">bash ~/colors.sh</text>
|
||||
<text x="15" y="70" fill="#fcfcfa" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
normal:
|
||||
</text>
|
||||
<text x="55" y="70" fill="#2d2a2e" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
black
|
||||
</text>
|
||||
<text x="85" y="70" fill="#ff6188" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
red
|
||||
</text>
|
||||
<text x="105" y="70" fill="#a9dc76" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
green
|
||||
</text>
|
||||
<text x="135" y="70" fill="#ffd866" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
yellow
|
||||
</text>
|
||||
<text x="170" y="70" fill="#6ab0f3" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
blue
|
||||
</text>
|
||||
<text x="195" y="70" fill="#ab9df2" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
magenta
|
||||
</text>
|
||||
<text x="235" y="70" fill="#78dce8" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
cyan
|
||||
</text>
|
||||
<text x="260" y="70" fill="#fcfcfa" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
white
|
||||
</text>
|
||||
<text x="15" y="85" fill="#fcfcfa" font-size="0.6em" font-family="monospace" class='Dynamic'>
|
||||
bright:
|
||||
</text>
|
||||
<text x="55" y="85" fill="#727072" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
black
|
||||
</text>
|
||||
<text x="85" y="85" fill="#ff6188" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
red
|
||||
</text>
|
||||
<text x="105" y="85" fill="#a9dc76" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
green
|
||||
</text>
|
||||
<text x="135" y="85" fill="#ffd866" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
yellow
|
||||
</text>
|
||||
<text x="170" y="85" fill="#6ab0f3" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
blue
|
||||
</text>
|
||||
<text x="195" y="85" fill="#ab9df2" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
magenta
|
||||
</text>
|
||||
<text x="235" y="85" fill="#78dce8" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
cyan
|
||||
</text>
|
||||
<text x="260" y="85" fill="#fcfcfa" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
white
|
||||
</text>
|
||||
<line x1="0" y1="95" x2="300" y2="95" style="stroke-width:0.2" class="Dynamic" stroke="#fcfcfa" />
|
||||
|
||||
<!-- prompt -->
|
||||
<text x="15" y="110" fill="#ab9df2" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
~/project
|
||||
</text>
|
||||
<text x="65" y="110" fill="#a9dc76" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
git(
|
||||
</text>
|
||||
<text x="85" y="110" fill="#ffd866" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
main
|
||||
</text>
|
||||
<text x="113" y="110" fill="#a9dc76" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
)
|
||||
</text>
|
||||
<!-- cursor -->
|
||||
<line x1="15" y1="120" x2="15" y2="130" style="stroke-width:2" class="Dynamic" stroke="#c1c0c0" />
|
||||
</svg>
|
After Width: | Height: | Size: 3.4 KiB |
90
standard/previews/monokai_pro_classic.yaml.svg
Normal file
90
standard/previews/monokai_pro_classic.yaml.svg
Normal file
|
@ -0,0 +1,90 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145">
|
||||
<rect width="300" height="145" class="Dynamic" fill="#272822" rx="5" />
|
||||
|
||||
<!-- first command -->
|
||||
<text x="15" y="15" fill="#fdfff1" font-size="0.6em" font-family="monospace" class="Dynamic">ls</text>
|
||||
<text x="15" y="30" fill="#66d9ef" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
dir
|
||||
</text>
|
||||
<text x="65" y="30" fill="#f92672" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
executable
|
||||
</text>
|
||||
<text x="175" y="30" fill="#fdfff1" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
file
|
||||
</text>
|
||||
<line x1="0" y1="40" x2="300" y2="40" style="stroke-width:0.2" class="Dynamic" stroke="#fdfff1"/>
|
||||
|
||||
<!-- second command -->
|
||||
<text x="15" y="55" fill="#fdfff1" font-size="0.6em" font-family="monospace" class="Dynamic">bash ~/colors.sh</text>
|
||||
<text x="15" y="70" fill="#fdfff1" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
normal:
|
||||
</text>
|
||||
<text x="55" y="70" fill="#272822" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
black
|
||||
</text>
|
||||
<text x="85" y="70" fill="#f92672" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
red
|
||||
</text>
|
||||
<text x="105" y="70" fill="#a6e22e" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
green
|
||||
</text>
|
||||
<text x="135" y="70" fill="#a9dc76" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
yellow
|
||||
</text>
|
||||
<text x="170" y="70" fill="#66d9ef" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
blue
|
||||
</text>
|
||||
<text x="195" y="70" fill="#ab9df2" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
magenta
|
||||
</text>
|
||||
<text x="235" y="70" fill="#5ad4e6" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
cyan
|
||||
</text>
|
||||
<text x="260" y="70" fill="#fdfff1" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
white
|
||||
</text>
|
||||
<text x="15" y="85" fill="#fdfff1" font-size="0.6em" font-family="monospace" class='Dynamic'>
|
||||
bright:
|
||||
</text>
|
||||
<text x="55" y="85" fill="#6e7066" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
black
|
||||
</text>
|
||||
<text x="85" y="85" fill="#f92672" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
red
|
||||
</text>
|
||||
<text x="105" y="85" fill="#a6e22e" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
green
|
||||
</text>
|
||||
<text x="135" y="85" fill="#a9dc76" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
yellow
|
||||
</text>
|
||||
<text x="170" y="85" fill="#66d9ef" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
blue
|
||||
</text>
|
||||
<text x="195" y="85" fill="#ab9df2" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
magenta
|
||||
</text>
|
||||
<text x="235" y="85" fill="#5ad4e6" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
cyan
|
||||
</text>
|
||||
<text x="260" y="85" fill="#fdfff1" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
white
|
||||
</text>
|
||||
<line x1="0" y1="95" x2="300" y2="95" style="stroke-width:0.2" class="Dynamic" stroke="#fdfff1" />
|
||||
|
||||
<!-- prompt -->
|
||||
<text x="15" y="110" fill="#ab9df2" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
~/project
|
||||
</text>
|
||||
<text x="65" y="110" fill="#a6e22e" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
git(
|
||||
</text>
|
||||
<text x="85" y="110" fill="#a9dc76" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
main
|
||||
</text>
|
||||
<text x="113" y="110" fill="#a6e22e" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
)
|
||||
</text>
|
||||
<!-- cursor -->
|
||||
<line x1="15" y1="120" x2="15" y2="130" style="stroke-width:2" class="Dynamic" stroke="#c0c1b5" />
|
||||
</svg>
|
After Width: | Height: | Size: 3.4 KiB |
90
standard/previews/monokai_pro_machine.yaml.svg
Normal file
90
standard/previews/monokai_pro_machine.yaml.svg
Normal file
|
@ -0,0 +1,90 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145">
|
||||
<rect width="300" height="145" class="Dynamic" fill="#273136" rx="5" />
|
||||
|
||||
<!-- first command -->
|
||||
<text x="15" y="15" fill="#f2fffc" font-size="0.6em" font-family="monospace" class="Dynamic">ls</text>
|
||||
<text x="15" y="30" fill="#6ab0f3" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
dir
|
||||
</text>
|
||||
<text x="65" y="30" fill="#ff6d7e" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
executable
|
||||
</text>
|
||||
<text x="175" y="30" fill="#f2fffc" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
file
|
||||
</text>
|
||||
<line x1="0" y1="40" x2="300" y2="40" style="stroke-width:0.2" class="Dynamic" stroke="#f2fffc"/>
|
||||
|
||||
<!-- second command -->
|
||||
<text x="15" y="55" fill="#f2fffc" font-size="0.6em" font-family="monospace" class="Dynamic">bash ~/colors.sh</text>
|
||||
<text x="15" y="70" fill="#f2fffc" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
normal:
|
||||
</text>
|
||||
<text x="55" y="70" fill="#273136" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
black
|
||||
</text>
|
||||
<text x="85" y="70" fill="#ff6d7e" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
red
|
||||
</text>
|
||||
<text x="105" y="70" fill="#a2e57b" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
green
|
||||
</text>
|
||||
<text x="135" y="70" fill="#ffed72" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
yellow
|
||||
</text>
|
||||
<text x="170" y="70" fill="#6ab0f3" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
blue
|
||||
</text>
|
||||
<text x="195" y="70" fill="#baa0f8" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
magenta
|
||||
</text>
|
||||
<text x="235" y="70" fill="#7cd5f1" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
cyan
|
||||
</text>
|
||||
<text x="260" y="70" fill="#f2fffc" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
white
|
||||
</text>
|
||||
<text x="15" y="85" fill="#f2fffc" font-size="0.6em" font-family="monospace" class='Dynamic'>
|
||||
bright:
|
||||
</text>
|
||||
<text x="55" y="85" fill="#6b7678" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
black
|
||||
</text>
|
||||
<text x="85" y="85" fill="#ff6d7e" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
red
|
||||
</text>
|
||||
<text x="105" y="85" fill="#a2e57b" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
green
|
||||
</text>
|
||||
<text x="135" y="85" fill="#ffed72" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
yellow
|
||||
</text>
|
||||
<text x="170" y="85" fill="#6ab0f3" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
blue
|
||||
</text>
|
||||
<text x="195" y="85" fill="#baa0f8" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
magenta
|
||||
</text>
|
||||
<text x="235" y="85" fill="#7cd5f1" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
cyan
|
||||
</text>
|
||||
<text x="260" y="85" fill="#f2fffc" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
white
|
||||
</text>
|
||||
<line x1="0" y1="95" x2="300" y2="95" style="stroke-width:0.2" class="Dynamic" stroke="#f2fffc" />
|
||||
|
||||
<!-- prompt -->
|
||||
<text x="15" y="110" fill="#baa0f8" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
~/project
|
||||
</text>
|
||||
<text x="65" y="110" fill="#a2e57b" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
git(
|
||||
</text>
|
||||
<text x="85" y="110" fill="#ffed72" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
main
|
||||
</text>
|
||||
<text x="113" y="110" fill="#a2e57b" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
)
|
||||
</text>
|
||||
<!-- cursor -->
|
||||
<line x1="15" y1="120" x2="15" y2="130" style="stroke-width:2" class="Dynamic" stroke="#b8c4c3" />
|
||||
</svg>
|
After Width: | Height: | Size: 3.4 KiB |
90
standard/previews/monokai_pro_ristretto.yml.svg
Normal file
90
standard/previews/monokai_pro_ristretto.yml.svg
Normal file
|
@ -0,0 +1,90 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145">
|
||||
<rect width="300" height="145" class="Dynamic" fill="#2c2525" rx="5" />
|
||||
|
||||
<!-- first command -->
|
||||
<text x="15" y="15" fill="#fff1f3" font-size="0.6em" font-family="monospace" class="Dynamic">ls</text>
|
||||
<text x="15" y="30" fill="#6ab0f3" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
dir
|
||||
</text>
|
||||
<text x="65" y="30" fill="#fd6883" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
executable
|
||||
</text>
|
||||
<text x="175" y="30" fill="#fff1f3" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
file
|
||||
</text>
|
||||
<line x1="0" y1="40" x2="300" y2="40" style="stroke-width:0.2" class="Dynamic" stroke="#fff1f3"/>
|
||||
|
||||
<!-- second command -->
|
||||
<text x="15" y="55" fill="#fff1f3" font-size="0.6em" font-family="monospace" class="Dynamic">bash ~/colors.sh</text>
|
||||
<text x="15" y="70" fill="#fff1f3" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
normal:
|
||||
</text>
|
||||
<text x="55" y="70" fill="#2c2525" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
black
|
||||
</text>
|
||||
<text x="85" y="70" fill="#fd6883" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
red
|
||||
</text>
|
||||
<text x="105" y="70" fill="#adda78" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
green
|
||||
</text>
|
||||
<text x="135" y="70" fill="#f9cc6c" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
yellow
|
||||
</text>
|
||||
<text x="170" y="70" fill="#6ab0f3" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
blue
|
||||
</text>
|
||||
<text x="195" y="70" fill="#a8a9eb" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
magenta
|
||||
</text>
|
||||
<text x="235" y="70" fill="#85dacc" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
cyan
|
||||
</text>
|
||||
<text x="260" y="70" fill="#fff1f3" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
white
|
||||
</text>
|
||||
<text x="15" y="85" fill="#fff1f3" font-size="0.6em" font-family="monospace" class='Dynamic'>
|
||||
bright:
|
||||
</text>
|
||||
<text x="55" y="85" fill="#72696a" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
black
|
||||
</text>
|
||||
<text x="85" y="85" fill="#fd6883" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
red
|
||||
</text>
|
||||
<text x="105" y="85" fill="#adda78" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
green
|
||||
</text>
|
||||
<text x="135" y="85" fill="#f9cc6c" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
yellow
|
||||
</text>
|
||||
<text x="170" y="85" fill="#6ab0f3" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
blue
|
||||
</text>
|
||||
<text x="195" y="85" fill="#a8a9eb" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
magenta
|
||||
</text>
|
||||
<text x="235" y="85" fill="#85dacc" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
cyan
|
||||
</text>
|
||||
<text x="260" y="85" fill="#fff1f3" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
white
|
||||
</text>
|
||||
<line x1="0" y1="95" x2="300" y2="95" style="stroke-width:0.2" class="Dynamic" stroke="#fff1f3" />
|
||||
|
||||
<!-- prompt -->
|
||||
<text x="15" y="110" fill="#a8a9eb" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
~/project
|
||||
</text>
|
||||
<text x="65" y="110" fill="#adda78" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
git(
|
||||
</text>
|
||||
<text x="85" y="110" fill="#f9cc6c" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
main
|
||||
</text>
|
||||
<text x="113" y="110" fill="#adda78" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
)
|
||||
</text>
|
||||
<!-- cursor -->
|
||||
<line x1="15" y1="120" x2="15" y2="130" style="stroke-width:2" class="Dynamic" stroke="#c3b7b8" />
|
||||
</svg>
|
After Width: | Height: | Size: 3.4 KiB |
90
standard/previews/monokai_pro_spectrum.yml.svg
Normal file
90
standard/previews/monokai_pro_spectrum.yml.svg
Normal file
|
@ -0,0 +1,90 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145">
|
||||
<rect width="300" height="145" class="Dynamic" fill="#222222" rx="5" />
|
||||
|
||||
<!-- first command -->
|
||||
<text x="15" y="15" fill="#f7f1ff" font-size="0.6em" font-family="monospace" class="Dynamic">ls</text>
|
||||
<text x="15" y="30" fill="#6ab0f3" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
dir
|
||||
</text>
|
||||
<text x="65" y="30" fill="#fc618d" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
executable
|
||||
</text>
|
||||
<text x="175" y="30" fill="#f7f1ff" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
file
|
||||
</text>
|
||||
<line x1="0" y1="40" x2="300" y2="40" style="stroke-width:0.2" class="Dynamic" stroke="#f7f1ff"/>
|
||||
|
||||
<!-- second command -->
|
||||
<text x="15" y="55" fill="#f7f1ff" font-size="0.6em" font-family="monospace" class="Dynamic">bash ~/colors.sh</text>
|
||||
<text x="15" y="70" fill="#f7f1ff" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
normal:
|
||||
</text>
|
||||
<text x="55" y="70" fill="#222222" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
black
|
||||
</text>
|
||||
<text x="85" y="70" fill="#fc618d" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
red
|
||||
</text>
|
||||
<text x="105" y="70" fill="#7bd88f" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
green
|
||||
</text>
|
||||
<text x="135" y="70" fill="#fce566" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
yellow
|
||||
</text>
|
||||
<text x="170" y="70" fill="#6ab0f3" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
blue
|
||||
</text>
|
||||
<text x="195" y="70" fill="#948ae3" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
magenta
|
||||
</text>
|
||||
<text x="235" y="70" fill="#5ad4e6" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
cyan
|
||||
</text>
|
||||
<text x="260" y="70" fill="#f7f1ff" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
white
|
||||
</text>
|
||||
<text x="15" y="85" fill="#f7f1ff" font-size="0.6em" font-family="monospace" class='Dynamic'>
|
||||
bright:
|
||||
</text>
|
||||
<text x="55" y="85" fill="#69676c" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
black
|
||||
</text>
|
||||
<text x="85" y="85" fill="#fc618d" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
red
|
||||
</text>
|
||||
<text x="105" y="85" fill="#7bd88f" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
green
|
||||
</text>
|
||||
<text x="135" y="85" fill="#fce566" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
yellow
|
||||
</text>
|
||||
<text x="170" y="85" fill="#6ab0f3" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
blue
|
||||
</text>
|
||||
<text x="195" y="85" fill="#948ae3" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
magenta
|
||||
</text>
|
||||
<text x="235" y="85" fill="#5ad4e6" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
cyan
|
||||
</text>
|
||||
<text x="260" y="85" fill="#f7f1ff" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
white
|
||||
</text>
|
||||
<line x1="0" y1="95" x2="300" y2="95" style="stroke-width:0.2" class="Dynamic" stroke="#f7f1ff" />
|
||||
|
||||
<!-- prompt -->
|
||||
<text x="15" y="110" fill="#948ae3" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
~/project
|
||||
</text>
|
||||
<text x="65" y="110" fill="#7bd88f" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
git(
|
||||
</text>
|
||||
<text x="85" y="110" fill="#fce566" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
main
|
||||
</text>
|
||||
<text x="113" y="110" fill="#7bd88f" font-size="0.6em" font-family="monospace" class="Dynamic">
|
||||
)
|
||||
</text>
|
||||
<!-- cursor -->
|
||||
<line x1="15" y1="120" x2="15" y2="130" style="stroke-width:2" class="Dynamic" stroke="#bab6c0" />
|
||||
</svg>
|
After Width: | Height: | Size: 3.4 KiB |
Loading…
Add table
Add a link
Reference in a new issue