From ad3068590480e8bf60423c0d209f77710f36d03d Mon Sep 17 00:00:00 2001 From: Aditya Gupta Date: Wed, 21 Jan 2026 16:04:43 +0530 Subject: [PATCH] feat: init --- borlander/content.js | 0 borlander/manifest.json | 16 +++++++++++++ borlander/styles.css | 51 +++++++++++++++++++++++++++++++++++++++++ 3 files changed, 67 insertions(+) create mode 100644 borlander/content.js create mode 100644 borlander/manifest.json create mode 100644 borlander/styles.css diff --git a/borlander/content.js b/borlander/content.js new file mode 100644 index 0000000..e69de29 diff --git a/borlander/manifest.json b/borlander/manifest.json new file mode 100644 index 0000000..4f1a206 --- /dev/null +++ b/borlander/manifest.json @@ -0,0 +1,16 @@ +{ + "manifest_version": 3, + "name": "Borlander", + "version": "1.0", + "description": "Applies the classic Borland blue and yellow theme to all websites.", + "content_scripts": [ + { + "matches": [ + "" + ], + "css": [ + "styles.css" + ] + } + ] +} \ No newline at end of file diff --git a/borlander/styles.css b/borlander/styles.css new file mode 100644 index 0000000..fbb6856 --- /dev/null +++ b/borlander/styles.css @@ -0,0 +1,51 @@ +/* Apply the classic Blue background and Yellow text */ +html, +body, +div, +span, +p, +section, +article { + background-color: #0000A4 !important; + color: #FFFF4E !important; + border-color: #FFFFB6 !important; +} + +/* Links (using the Cyan/Bright Blue from your palette) */ +a, +a * { + color: #B5DCFF !important; + text-decoration: underline !important; +} + +/* Headers (using the White/Bright White) */ +h1, +h2, +h3, +h4, +h5, +h6 { + color: #FFFFFF !important; +} + +/* Input fields and buttons */ +input, +textarea, +button, +select { + background-color: #4F4F4F !important; + /* Dark Grey for contrast */ + color: #FFFF4E !important; + border: 1px solid #EEEEEE !important; +} + +/* Scrollbars to match the aesthetic */ +::-webkit-scrollbar { + width: 12px; + background: #0000A4; +} + +::-webkit-scrollbar-thumb { + background: #4F4F4F; + border: 1px solid #FFFF4E; +} \ No newline at end of file