33 lines
1012 B
XML
33 lines
1012 B
XML
<svg
|
|
width="200"
|
|
height="150"
|
|
viewBox="0 0 200 150"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
fill="none"
|
|
stroke="none"
|
|
stroke-width="0"
|
|
>
|
|
<!-- Background of the terminal window -->
|
|
<rect x="10" y="10" width="180" height="130" rx="8" ry="8" fill="#F5F5F5" />
|
|
|
|
<!-- Close, Minimize, Maximize buttons (moved to the right side) -->
|
|
<circle cx="155" cy="25" r="5" fill="#FF5F56" />
|
|
<circle cx="175" cy="25" r="5" fill="#FFBD2E" />
|
|
<circle cx="195" cy="25" r="5" fill="#27C93F" />
|
|
|
|
<!-- Terminal Text (Example commands, updated to dark color for light theme) -->
|
|
<text x="20" y="55" font-family="monospace" font-size="12" fill="#333333">
|
|
$ ls -l
|
|
</text>
|
|
<text x="20" y="75" font-family="monospace" font-size="12" fill="#333333">
|
|
Desktop Documents Downloads
|
|
</text>
|
|
<text x="20" y="95" font-family="monospace" font-size="12" fill="#333333">
|
|
Music Pictures Videos
|
|
</text>
|
|
<text x="20" y="115" font-family="monospace" font-size="12" fill="#333333">
|
|
$
|
|
</text>
|
|
</svg>
|
|
|