Buttons styles and their docs, updating snapshots

This commit is contained in:
Darren Burns
2024-10-31 11:31:10 +00:00
parent 422241f1a5
commit 27d8079969
15 changed files with 670 additions and 656 deletions

View File

@@ -190,6 +190,14 @@ Here's a comprehensive list of these variables, their purposes, and default valu
| `$footer-description-background` | Background color for descriptions in the footer | `"transparent"` |
| `$footer-item-background` | Background color for items in the footer | `"transparent"` |
### Button
| Variable | Purpose | Default Value |
|----------|---------|---------------|
| `$button-foreground` | Foreground color for standard buttons | `$foreground` |
| `$button-color-foreground` | Foreground color for colored buttons | `$text` |
| `$button-focus-text-style` | Text style for focused buttons | `"bold reverse"` |
## App-specific variables
The variables above are defined and used by Textual itself.

View File

@@ -285,6 +285,7 @@ class ChangingThemeApp(App[None]):
yield MarkdownViewer(EXAMPLE_MARKDOWN)
with Horizontal(id="buttons"):
yield Button("Button 0")
yield Button("Button 1", variant="primary")
yield Button.success("Success 2")
yield Button.error("Error 3")

View File

@@ -322,7 +322,10 @@ class ColorSystem:
colors["markdown-h6-background"] = get("markdown-h6-background", "transparent")
colors["markdown-h6-text-style"] = get("markdown-h6-text-style", "bold")
colors["button-foreground"] = get("button-foreground", colors["text"])
colors["button-foreground"] = get("button-foreground", foreground.hex)
colors["button-color-foreground"] = get(
"button-color-foreground", colors["text"]
)
colors["button-focus-text-style"] = get("button-focus-text-style", "b reverse")
return colors

View File

@@ -73,9 +73,6 @@ BUILTIN_THEMES: dict[str, Theme] = {
success="#4EBF71",
foreground="#e0e0e0",
dark=True,
variables={
"button-foreground": "#121212",
},
),
"textual-light": Theme(
name="textual-light",
@@ -86,9 +83,6 @@ BUILTIN_THEMES: dict[str, Theme] = {
error="#ba3c5b",
success="#4EBF71",
dark=False,
variables={
"button-foreground": "#efefef",
},
),
"nord": Theme(
name="nord",
@@ -109,7 +103,7 @@ BUILTIN_THEMES: dict[str, Theme] = {
"block-cursor-text-style": "none",
"footer-key-foreground": "#88C0D0",
"input-selection-background": "#81a1c1 35%",
"button-foreground": "#2E3440",
"button-color-foreground": "#2E3440",
"button-focus-text-style": "reverse",
},
),
@@ -129,7 +123,7 @@ BUILTIN_THEMES: dict[str, Theme] = {
variables={
"block-cursor-foreground": "#fbf1c7",
"input-selection-background": "#689d6a40",
"button-foreground": "#282828",
"button-color-foreground": "#282828",
},
),
"catppuccin-mocha": Theme(
@@ -154,7 +148,7 @@ BUILTIN_THEMES: dict[str, Theme] = {
"footer-background": "#45475a",
"block-cursor-foreground": "#1e1e2e",
"block-cursor-text-style": "none",
"button-foreground": "#181825",
"button-color-foreground": "#181825",
},
),
"textual-ansi": Theme(
@@ -186,7 +180,7 @@ BUILTIN_THEMES: dict[str, Theme] = {
foreground="#F8F8F2",
dark=True,
variables={
"button-foreground": "#282A36",
"button-color-foreground": "#282A36",
},
),
"tokyo-night": Theme(
@@ -203,7 +197,7 @@ BUILTIN_THEMES: dict[str, Theme] = {
panel="#414868", # Panel
dark=True,
variables={
"button-foreground": "#24283B",
"button-color-foreground": "#24283B",
},
),
"monokai": Theme(
@@ -222,7 +216,7 @@ BUILTIN_THEMES: dict[str, Theme] = {
variables={
"foreground-muted": "#797979",
"input-selection-background": "#575b6190",
"button-foreground": "#272822",
"button-color-foreground": "#272822",
},
),
"cobalt": Theme(
@@ -238,7 +232,7 @@ BUILTIN_THEMES: dict[str, Theme] = {
panel="#2D3E46",
background="#1F262A",
variables={
"button-foreground": "#1F262A",
"button-color-foreground": "#1F262A",
},
),
"flexoki": Theme(
@@ -258,7 +252,7 @@ BUILTIN_THEMES: dict[str, Theme] = {
"input-cursor-foreground": "#5E409D",
"input-cursor-background": "#FFFCF0",
"input-selection-background": "#6F6E69 35%", # base.600 with opacity
"button-foreground": "#FFFCF0",
"button-color-foreground": "#FFFCF0",
},
),
"catppuccin-latte": Theme(
@@ -275,7 +269,7 @@ BUILTIN_THEMES: dict[str, Theme] = {
panel="#CCD0DA",
dark=False,
variables={
"button-foreground": "#EFF1F5",
"button-color-foreground": "#EFF1F5",
},
),
"solarized-light": Theme(
@@ -292,7 +286,7 @@ BUILTIN_THEMES: dict[str, Theme] = {
panel="#eee8d5",
dark=False,
variables={
"button-foreground": "#fdf6e3",
"button-color-foreground": "#fdf6e3",
"footer-background": "#268bd2",
"footer-key-foreground": "#fdf6e3",
"footer-description-foreground": "#fdf6e3",

View File

@@ -48,8 +48,8 @@ class Button(Widget, can_focus=True):
width: auto;
min-width: 16;
height: auto;
background: $surface;
color: $button-foreground;
background: $surface;
border: none;
border-top: tall $surface-lighten-1;
border-bottom: tall $surface-darken-1;
@@ -72,6 +72,7 @@ class Button(Widget, can_focus=True):
}
&.-primary {
color: $button-color-foreground;
background: $primary;
border-top: tall $primary-lighten-3;
border-bottom: tall $primary-darken-3;
@@ -89,6 +90,7 @@ class Button(Widget, can_focus=True):
}
&.-success {
color: $button-color-foreground;
background: $success;
border-top: tall $success-lighten-2;
border-bottom: tall $success-darken-3;
@@ -106,6 +108,7 @@ class Button(Widget, can_focus=True):
}
&.-warning{
color: $button-color-foreground;
background: $warning;
border-top: tall $warning-lighten-2;
border-bottom: tall $warning-darken-3;
@@ -123,6 +126,7 @@ class Button(Widget, can_focus=True):
}
&.-error {
color: $button-color-foreground;
background: $error;
border-top: tall $error-lighten-2;
border-bottom: tall $error-darken-3;

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 43 KiB

After

Width:  |  Height:  |  Size: 43 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 21 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 37 KiB

After

Width:  |  Height:  |  Size: 37 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 28 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 44 KiB

After

Width:  |  Height:  |  Size: 44 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 37 KiB

After

Width:  |  Height:  |  Size: 37 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 35 KiB

After

Width:  |  Height:  |  Size: 35 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 34 KiB

After

Width:  |  Height:  |  Size: 34 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 34 KiB

After

Width:  |  Height:  |  Size: 34 KiB

View File

@@ -19,138 +19,138 @@
font-weight: 700;
}
.terminal-1523496872-matrix {
.terminal-2886645771-matrix {
font-family: Fira Code, monospace;
font-size: 20px;
line-height: 24.4px;
font-variant-east-asian: full-width;
}
.terminal-1523496872-title {
.terminal-2886645771-title {
font-size: 18px;
font-weight: bold;
font-family: arial;
}
.terminal-1523496872-r1 { fill: #121212 }
.terminal-1523496872-r2 { fill: #0178d4 }
.terminal-1523496872-r3 { fill: #e0e0e0 }
.terminal-1523496872-r4 { fill: #c5c8c6 }
.terminal-1523496872-r5 { fill: #555555 }
.terminal-1523496872-r6 { fill: #1e1e1e;font-weight: bold }
.terminal-1523496872-r7 { fill: #f4005f;font-weight: bold }
.terminal-1523496872-r8 { fill: #80bbe9;font-weight: bold }
.terminal-1523496872-r9 { fill: #888888 }
.terminal-2886645771-r1 { fill: #121212 }
.terminal-2886645771-r2 { fill: #0178d4 }
.terminal-2886645771-r3 { fill: #e0e0e0 }
.terminal-2886645771-r4 { fill: #c5c8c6 }
.terminal-2886645771-r5 { fill: #343f49 }
.terminal-2886645771-r6 { fill: #0d0d0d;font-weight: bold }
.terminal-2886645771-r7 { fill: #f4005f;font-weight: bold }
.terminal-2886645771-r8 { fill: #80bbe9;font-weight: bold }
.terminal-2886645771-r9 { fill: #888888 }
</style>
<defs>
<clipPath id="terminal-1523496872-clip-terminal">
<clipPath id="terminal-2886645771-clip-terminal">
<rect x="0" y="0" width="975.0" height="584.5999999999999" />
</clipPath>
<clipPath id="terminal-1523496872-line-0">
<clipPath id="terminal-2886645771-line-0">
<rect x="0" y="1.5" width="976" height="24.65"/>
</clipPath>
<clipPath id="terminal-1523496872-line-1">
<clipPath id="terminal-2886645771-line-1">
<rect x="0" y="25.9" width="976" height="24.65"/>
</clipPath>
<clipPath id="terminal-1523496872-line-2">
<clipPath id="terminal-2886645771-line-2">
<rect x="0" y="50.3" width="976" height="24.65"/>
</clipPath>
<clipPath id="terminal-1523496872-line-3">
<clipPath id="terminal-2886645771-line-3">
<rect x="0" y="74.7" width="976" height="24.65"/>
</clipPath>
<clipPath id="terminal-1523496872-line-4">
<clipPath id="terminal-2886645771-line-4">
<rect x="0" y="99.1" width="976" height="24.65"/>
</clipPath>
<clipPath id="terminal-1523496872-line-5">
<clipPath id="terminal-2886645771-line-5">
<rect x="0" y="123.5" width="976" height="24.65"/>
</clipPath>
<clipPath id="terminal-1523496872-line-6">
<clipPath id="terminal-2886645771-line-6">
<rect x="0" y="147.9" width="976" height="24.65"/>
</clipPath>
<clipPath id="terminal-1523496872-line-7">
<clipPath id="terminal-2886645771-line-7">
<rect x="0" y="172.3" width="976" height="24.65"/>
</clipPath>
<clipPath id="terminal-1523496872-line-8">
<clipPath id="terminal-2886645771-line-8">
<rect x="0" y="196.7" width="976" height="24.65"/>
</clipPath>
<clipPath id="terminal-1523496872-line-9">
<clipPath id="terminal-2886645771-line-9">
<rect x="0" y="221.1" width="976" height="24.65"/>
</clipPath>
<clipPath id="terminal-1523496872-line-10">
<clipPath id="terminal-2886645771-line-10">
<rect x="0" y="245.5" width="976" height="24.65"/>
</clipPath>
<clipPath id="terminal-1523496872-line-11">
<clipPath id="terminal-2886645771-line-11">
<rect x="0" y="269.9" width="976" height="24.65"/>
</clipPath>
<clipPath id="terminal-1523496872-line-12">
<clipPath id="terminal-2886645771-line-12">
<rect x="0" y="294.3" width="976" height="24.65"/>
</clipPath>
<clipPath id="terminal-1523496872-line-13">
<clipPath id="terminal-2886645771-line-13">
<rect x="0" y="318.7" width="976" height="24.65"/>
</clipPath>
<clipPath id="terminal-1523496872-line-14">
<clipPath id="terminal-2886645771-line-14">
<rect x="0" y="343.1" width="976" height="24.65"/>
</clipPath>
<clipPath id="terminal-1523496872-line-15">
<clipPath id="terminal-2886645771-line-15">
<rect x="0" y="367.5" width="976" height="24.65"/>
</clipPath>
<clipPath id="terminal-1523496872-line-16">
<clipPath id="terminal-2886645771-line-16">
<rect x="0" y="391.9" width="976" height="24.65"/>
</clipPath>
<clipPath id="terminal-1523496872-line-17">
<clipPath id="terminal-2886645771-line-17">
<rect x="0" y="416.3" width="976" height="24.65"/>
</clipPath>
<clipPath id="terminal-1523496872-line-18">
<clipPath id="terminal-2886645771-line-18">
<rect x="0" y="440.7" width="976" height="24.65"/>
</clipPath>
<clipPath id="terminal-1523496872-line-19">
<clipPath id="terminal-2886645771-line-19">
<rect x="0" y="465.1" width="976" height="24.65"/>
</clipPath>
<clipPath id="terminal-1523496872-line-20">
<clipPath id="terminal-2886645771-line-20">
<rect x="0" y="489.5" width="976" height="24.65"/>
</clipPath>
<clipPath id="terminal-1523496872-line-21">
<clipPath id="terminal-2886645771-line-21">
<rect x="0" y="513.9" width="976" height="24.65"/>
</clipPath>
<clipPath id="terminal-1523496872-line-22">
<clipPath id="terminal-2886645771-line-22">
<rect x="0" y="538.3" width="976" height="24.65"/>
</clipPath>
</defs>
<rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="992" height="633.6" rx="8"/><text class="terminal-1523496872-title" fill="#c5c8c6" text-anchor="middle" x="496" y="27">CheckboxApp</text>
<rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="992" height="633.6" rx="8"/><text class="terminal-2886645771-title" fill="#c5c8c6" text-anchor="middle" x="496" y="27">CheckboxApp</text>
<g transform="translate(26,22)">
<circle cx="0" cy="0" r="7" fill="#ff5f57"/>
<circle cx="22" cy="0" r="7" fill="#febc2e"/>
<circle cx="44" cy="0" r="7" fill="#28c840"/>
</g>
<g transform="translate(9, 41)" clip-path="url(#terminal-1523496872-clip-terminal)">
<rect fill="#0178d4" x="0" y="1.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#272727" x="12.2" y="1.5" width="353.8" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="366" y="1.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="378.2" y="1.5" width="597.8" height="24.65" shape-rendering="crispEdges"/><rect fill="#0178d4" x="0" y="25.9" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#272727" x="12.2" y="25.9" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#272727" x="24.4" y="25.9" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#555555" x="36.6" y="25.9" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#272727" x="48.8" y="25.9" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#272727" x="61" y="25.9" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#0178d4" x="73.2" y="25.9" width="146.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#0178d4" x="219.6" y="25.9" width="134.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#272727" x="353.8" y="25.9" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="366" y="25.9" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="378.2" y="25.9" width="597.8" height="24.65" shape-rendering="crispEdges"/><rect fill="#0178d4" x="0" y="50.3" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#272727" x="12.2" y="50.3" width="353.8" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="366" y="50.3" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="378.2" y="50.3" width="597.8" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="74.7" width="146.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="146.4" y="74.7" width="134.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="280.6" y="74.7" width="695.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="99.1" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="123.5" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="147.9" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="172.3" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="196.7" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="221.1" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="245.5" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="269.9" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="294.3" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="318.7" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="343.1" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="367.5" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="391.9" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="416.3" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="440.7" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="465.1" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="489.5" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="513.9" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="538.3" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="562.7" width="976" height="24.65" shape-rendering="crispEdges"/>
<g class="terminal-1523496872-matrix">
<text class="terminal-1523496872-r1" x="0" y="20" textLength="12.2" clip-path="url(#terminal-1523496872-line-0)"></text><text class="terminal-1523496872-r2" x="12.2" y="20" textLength="353.8" clip-path="url(#terminal-1523496872-line-0)">▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔</text><text class="terminal-1523496872-r2" x="366" y="20" textLength="12.2" clip-path="url(#terminal-1523496872-line-0)"></text><text class="terminal-1523496872-r4" x="976" y="20" textLength="12.2" clip-path="url(#terminal-1523496872-line-0)">
</text><text class="terminal-1523496872-r1" x="0" y="44.4" textLength="12.2" clip-path="url(#terminal-1523496872-line-1)"></text><text class="terminal-1523496872-r5" x="24.4" y="44.4" textLength="12.2" clip-path="url(#terminal-1523496872-line-1)"></text><text class="terminal-1523496872-r6" x="36.6" y="44.4" textLength="12.2" clip-path="url(#terminal-1523496872-line-1)">X</text><text class="terminal-1523496872-r5" x="48.8" y="44.4" textLength="12.2" clip-path="url(#terminal-1523496872-line-1)"></text><text class="terminal-1523496872-r7" x="73.2" y="44.4" textLength="146.4" clip-path="url(#terminal-1523496872-line-1)">This&#160;is&#160;just</text><text class="terminal-1523496872-r8" x="219.6" y="44.4" textLength="134.2" clip-path="url(#terminal-1523496872-line-1)">&#160;some&#160;text.</text><text class="terminal-1523496872-r2" x="366" y="44.4" textLength="12.2" clip-path="url(#terminal-1523496872-line-1)"></text><text class="terminal-1523496872-r4" x="976" y="44.4" textLength="12.2" clip-path="url(#terminal-1523496872-line-1)">
</text><text class="terminal-1523496872-r1" x="0" y="68.8" textLength="12.2" clip-path="url(#terminal-1523496872-line-2)"></text><text class="terminal-1523496872-r2" x="12.2" y="68.8" textLength="353.8" clip-path="url(#terminal-1523496872-line-2)">▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁</text><text class="terminal-1523496872-r2" x="366" y="68.8" textLength="12.2" clip-path="url(#terminal-1523496872-line-2)"></text><text class="terminal-1523496872-r4" x="976" y="68.8" textLength="12.2" clip-path="url(#terminal-1523496872-line-2)">
</text><text class="terminal-1523496872-r7" x="0" y="93.2" textLength="146.4" clip-path="url(#terminal-1523496872-line-3)">This&#160;is&#160;just</text><text class="terminal-1523496872-r9" x="146.4" y="93.2" textLength="134.2" clip-path="url(#terminal-1523496872-line-3)">&#160;some&#160;text.</text><text class="terminal-1523496872-r4" x="976" y="93.2" textLength="12.2" clip-path="url(#terminal-1523496872-line-3)">
</text><text class="terminal-1523496872-r4" x="976" y="117.6" textLength="12.2" clip-path="url(#terminal-1523496872-line-4)">
</text><text class="terminal-1523496872-r4" x="976" y="142" textLength="12.2" clip-path="url(#terminal-1523496872-line-5)">
</text><text class="terminal-1523496872-r4" x="976" y="166.4" textLength="12.2" clip-path="url(#terminal-1523496872-line-6)">
</text><text class="terminal-1523496872-r4" x="976" y="190.8" textLength="12.2" clip-path="url(#terminal-1523496872-line-7)">
</text><text class="terminal-1523496872-r4" x="976" y="215.2" textLength="12.2" clip-path="url(#terminal-1523496872-line-8)">
</text><text class="terminal-1523496872-r4" x="976" y="239.6" textLength="12.2" clip-path="url(#terminal-1523496872-line-9)">
</text><text class="terminal-1523496872-r4" x="976" y="264" textLength="12.2" clip-path="url(#terminal-1523496872-line-10)">
</text><text class="terminal-1523496872-r4" x="976" y="288.4" textLength="12.2" clip-path="url(#terminal-1523496872-line-11)">
</text><text class="terminal-1523496872-r4" x="976" y="312.8" textLength="12.2" clip-path="url(#terminal-1523496872-line-12)">
</text><text class="terminal-1523496872-r4" x="976" y="337.2" textLength="12.2" clip-path="url(#terminal-1523496872-line-13)">
</text><text class="terminal-1523496872-r4" x="976" y="361.6" textLength="12.2" clip-path="url(#terminal-1523496872-line-14)">
</text><text class="terminal-1523496872-r4" x="976" y="386" textLength="12.2" clip-path="url(#terminal-1523496872-line-15)">
</text><text class="terminal-1523496872-r4" x="976" y="410.4" textLength="12.2" clip-path="url(#terminal-1523496872-line-16)">
</text><text class="terminal-1523496872-r4" x="976" y="434.8" textLength="12.2" clip-path="url(#terminal-1523496872-line-17)">
</text><text class="terminal-1523496872-r4" x="976" y="459.2" textLength="12.2" clip-path="url(#terminal-1523496872-line-18)">
</text><text class="terminal-1523496872-r4" x="976" y="483.6" textLength="12.2" clip-path="url(#terminal-1523496872-line-19)">
</text><text class="terminal-1523496872-r4" x="976" y="508" textLength="12.2" clip-path="url(#terminal-1523496872-line-20)">
</text><text class="terminal-1523496872-r4" x="976" y="532.4" textLength="12.2" clip-path="url(#terminal-1523496872-line-21)">
</text><text class="terminal-1523496872-r4" x="976" y="556.8" textLength="12.2" clip-path="url(#terminal-1523496872-line-22)">
<g transform="translate(9, 41)" clip-path="url(#terminal-2886645771-clip-terminal)">
<rect fill="#0178d4" x="0" y="1.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#272727" x="12.2" y="1.5" width="353.8" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="366" y="1.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="378.2" y="1.5" width="597.8" height="24.65" shape-rendering="crispEdges"/><rect fill="#0178d4" x="0" y="25.9" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#272727" x="12.2" y="25.9" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#272727" x="24.4" y="25.9" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#343f49" x="36.6" y="25.9" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#272727" x="48.8" y="25.9" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#272727" x="61" y="25.9" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#0178d4" x="73.2" y="25.9" width="146.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#0178d4" x="219.6" y="25.9" width="134.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#272727" x="353.8" y="25.9" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="366" y="25.9" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="378.2" y="25.9" width="597.8" height="24.65" shape-rendering="crispEdges"/><rect fill="#0178d4" x="0" y="50.3" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#272727" x="12.2" y="50.3" width="353.8" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="366" y="50.3" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="378.2" y="50.3" width="597.8" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="74.7" width="146.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="146.4" y="74.7" width="134.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="280.6" y="74.7" width="695.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="99.1" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="123.5" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="147.9" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="172.3" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="196.7" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="221.1" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="245.5" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="269.9" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="294.3" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="318.7" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="343.1" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="367.5" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="391.9" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="416.3" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="440.7" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="465.1" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="489.5" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="513.9" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="538.3" width="976" height="24.65" shape-rendering="crispEdges"/><rect fill="#121212" x="0" y="562.7" width="976" height="24.65" shape-rendering="crispEdges"/>
<g class="terminal-2886645771-matrix">
<text class="terminal-2886645771-r1" x="0" y="20" textLength="12.2" clip-path="url(#terminal-2886645771-line-0)"></text><text class="terminal-2886645771-r2" x="12.2" y="20" textLength="353.8" clip-path="url(#terminal-2886645771-line-0)">▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔</text><text class="terminal-2886645771-r2" x="366" y="20" textLength="12.2" clip-path="url(#terminal-2886645771-line-0)"></text><text class="terminal-2886645771-r4" x="976" y="20" textLength="12.2" clip-path="url(#terminal-2886645771-line-0)">
</text><text class="terminal-2886645771-r1" x="0" y="44.4" textLength="12.2" clip-path="url(#terminal-2886645771-line-1)"></text><text class="terminal-2886645771-r5" x="24.4" y="44.4" textLength="12.2" clip-path="url(#terminal-2886645771-line-1)"></text><text class="terminal-2886645771-r6" x="36.6" y="44.4" textLength="12.2" clip-path="url(#terminal-2886645771-line-1)">X</text><text class="terminal-2886645771-r5" x="48.8" y="44.4" textLength="12.2" clip-path="url(#terminal-2886645771-line-1)"></text><text class="terminal-2886645771-r7" x="73.2" y="44.4" textLength="146.4" clip-path="url(#terminal-2886645771-line-1)">This&#160;is&#160;just</text><text class="terminal-2886645771-r8" x="219.6" y="44.4" textLength="134.2" clip-path="url(#terminal-2886645771-line-1)">&#160;some&#160;text.</text><text class="terminal-2886645771-r2" x="366" y="44.4" textLength="12.2" clip-path="url(#terminal-2886645771-line-1)"></text><text class="terminal-2886645771-r4" x="976" y="44.4" textLength="12.2" clip-path="url(#terminal-2886645771-line-1)">
</text><text class="terminal-2886645771-r1" x="0" y="68.8" textLength="12.2" clip-path="url(#terminal-2886645771-line-2)"></text><text class="terminal-2886645771-r2" x="12.2" y="68.8" textLength="353.8" clip-path="url(#terminal-2886645771-line-2)">▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁</text><text class="terminal-2886645771-r2" x="366" y="68.8" textLength="12.2" clip-path="url(#terminal-2886645771-line-2)"></text><text class="terminal-2886645771-r4" x="976" y="68.8" textLength="12.2" clip-path="url(#terminal-2886645771-line-2)">
</text><text class="terminal-2886645771-r7" x="0" y="93.2" textLength="146.4" clip-path="url(#terminal-2886645771-line-3)">This&#160;is&#160;just</text><text class="terminal-2886645771-r9" x="146.4" y="93.2" textLength="134.2" clip-path="url(#terminal-2886645771-line-3)">&#160;some&#160;text.</text><text class="terminal-2886645771-r4" x="976" y="93.2" textLength="12.2" clip-path="url(#terminal-2886645771-line-3)">
</text><text class="terminal-2886645771-r4" x="976" y="117.6" textLength="12.2" clip-path="url(#terminal-2886645771-line-4)">
</text><text class="terminal-2886645771-r4" x="976" y="142" textLength="12.2" clip-path="url(#terminal-2886645771-line-5)">
</text><text class="terminal-2886645771-r4" x="976" y="166.4" textLength="12.2" clip-path="url(#terminal-2886645771-line-6)">
</text><text class="terminal-2886645771-r4" x="976" y="190.8" textLength="12.2" clip-path="url(#terminal-2886645771-line-7)">
</text><text class="terminal-2886645771-r4" x="976" y="215.2" textLength="12.2" clip-path="url(#terminal-2886645771-line-8)">
</text><text class="terminal-2886645771-r4" x="976" y="239.6" textLength="12.2" clip-path="url(#terminal-2886645771-line-9)">
</text><text class="terminal-2886645771-r4" x="976" y="264" textLength="12.2" clip-path="url(#terminal-2886645771-line-10)">
</text><text class="terminal-2886645771-r4" x="976" y="288.4" textLength="12.2" clip-path="url(#terminal-2886645771-line-11)">
</text><text class="terminal-2886645771-r4" x="976" y="312.8" textLength="12.2" clip-path="url(#terminal-2886645771-line-12)">
</text><text class="terminal-2886645771-r4" x="976" y="337.2" textLength="12.2" clip-path="url(#terminal-2886645771-line-13)">
</text><text class="terminal-2886645771-r4" x="976" y="361.6" textLength="12.2" clip-path="url(#terminal-2886645771-line-14)">
</text><text class="terminal-2886645771-r4" x="976" y="386" textLength="12.2" clip-path="url(#terminal-2886645771-line-15)">
</text><text class="terminal-2886645771-r4" x="976" y="410.4" textLength="12.2" clip-path="url(#terminal-2886645771-line-16)">
</text><text class="terminal-2886645771-r4" x="976" y="434.8" textLength="12.2" clip-path="url(#terminal-2886645771-line-17)">
</text><text class="terminal-2886645771-r4" x="976" y="459.2" textLength="12.2" clip-path="url(#terminal-2886645771-line-18)">
</text><text class="terminal-2886645771-r4" x="976" y="483.6" textLength="12.2" clip-path="url(#terminal-2886645771-line-19)">
</text><text class="terminal-2886645771-r4" x="976" y="508" textLength="12.2" clip-path="url(#terminal-2886645771-line-20)">
</text><text class="terminal-2886645771-r4" x="976" y="532.4" textLength="12.2" clip-path="url(#terminal-2886645771-line-21)">
</text><text class="terminal-2886645771-r4" x="976" y="556.8" textLength="12.2" clip-path="url(#terminal-2886645771-line-22)">
</text>
</g>
</g>

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB