https://github.com/vdustr/term-ptt-retro-theme
A retro theme for term.ptt.cc based on term-ptt-custom-theme .
https://github.com/vdustr/term-ptt-retro-theme
color css customization greasemonkey gruvbox palette pixel ptt retro tampermonkey theme
Last synced: 7 months ago
JSON representation
A retro theme for term.ptt.cc based on term-ptt-custom-theme .
- Host: GitHub
- URL: https://github.com/vdustr/term-ptt-retro-theme
- Owner: VdustR
- License: mit
- Created: 2022-04-08T09:59:07.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-11T03:52:25.000Z (almost 3 years ago)
- Last Synced: 2025-02-19T12:53:32.496Z (8 months ago)
- Topics: color, css, customization, greasemonkey, gruvbox, palette, pixel, ptt, retro, tampermonkey, theme
- Language: CSS
- Homepage: https://term.ptt.cc
- Size: 446 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PTT Retro Theme
A retro theme for [term.ptt.cc](https://term.ptt.cc/) based on [term-ptt-custom-theme](https://github.com/VdustR/term-ptt-custom-theme) .


- Palette: [gruvbox.css](https://github.com/VdustR/gruvbox.css)
- Font: [Fusion Pixel Font](https://github.com/TakWolf/fusion-pixel-font) (Set [ˇ](https://unicode-table.com/en/02C7/) width to 1200)## Usage
```js
// ==UserScript==
// @name PTT Retro Theme
// @description https://github.com/VdustR/term-ptt-retro-theme
// @version 0.0.0
// @match https://term.ptt.cc/
// ==/UserScript==(function () {
"use strict";
function addCss(href) {
const link = document.createElement("link");
link.setAttribute("rel", "stylesheet");
link.setAttribute("href", href);
document.body.appendChild(link);
}
addCss("https://cdn.jsdelivr.net/gh/vdustr/term-ptt-retro-theme/theme.css");
})();
```It's optional to set a pixel font:
```
Fusion Pixel PTT,MingLiu,SymMingLiu,monospace
```## License
[MIT](https://github.com/VdustR/term-ptt-custom-theme/blob/main/LICENSE) © [ViPro](https://vdustr.dev).