Created
March 4, 2026 09:27
-
-
Save Archie22is/dd5864c356f38d85ff416f7dfefcb3b3 to your computer and use it in GitHub Desktop.
CRT display effect. Credit https://codepen.io/wavebeem/pen/JoRPQOj
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- https://www.asciiart.eu/art/64248696ab474307 --> | |
| <!-- https://xoxo.zone/@qristy/116122370991133457 --> | |
| <pre> | |
| ,_ _ | |
| |\\_,-~/ | |
| / _ _ | ,--. | |
| ( @ @ ) / ,-' | |
| \ _T_/-._( ( | |
| / `. \ | |
| | _ \ | | |
| \ \ , / | | |
| || |-_\__ / | |
| ((_/`(____,-' | |
| MEOW MEOW MEOW, | |
| I'M A KITTY CAT. | |
| </pre> | |
| <style> | |
| @import url("https://fonts.googleapis.com/css2?family=VT323&display=swap"); | |
| :root { | |
| --black: #1b1b1b; | |
| --pink: #db7497; | |
| --darker-cyan: #41bcbc; | |
| --cyan: #5fe4e4; | |
| } | |
| ::selection { | |
| background: var(--cyan); | |
| color: var(--black); | |
| text-shadow: none; | |
| } | |
| body { | |
| background: var(--black); | |
| text-shadow: -2px 0px 2px var(--pink), 2px 0px 2px var(--darker-cyan); | |
| color: var(--cyan); | |
| font-weight: bold; | |
| font-size: 32px; | |
| padding: 32px; | |
| } | |
| pre { | |
| font-family: VT323, monospace; | |
| } | |
| </style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment