ari.lt/page/ttytheme/index.html
Ari Archer 1c3ba463cd Update usage api, add an [read more]
- Update usage api
- Add an import/export data page
- Improve css
- Add more noscript tags
- Fix a JS lincense issue
- Fix an html issue with a tags having no target="_blank"
- Add generic styling for noscript tags
- Add css for a switch/toggle (future use, didn't use it this time)

Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
2022-09-23 00:47:52 +03:00

101 lines
3.9 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Ari::web -&gt; TTY</title>
<meta name="description" content="TTY theme generator by ari-web" />
<meta
name="keywords"
content="tty, theme, linux, cli, terminal, generator, theme-generator, foss, unlicense"
/>
<meta
name="robots"
content="follow, index, max-snippet:-1, max-video-preview:-1, max-image-preview:large"
/>
<meta property="og:type" content="website" />
<meta name="color-scheme" content="dark" />
<script type="text/javascript">
<!--//--><![CDATA[//><!--
/**
* @licstart The following is the entire license notice for the JavaScript
* code in this page.
*
* Copyright (C) 2022 Ari Archer
*
* The JavaScript code in this page is free software: you can redistribute
* it and/or modify it under the terms of the GNU General Public License
* (GNU GPL) as published by the Free Software Foundation, either version 3
* of the License, or (at your option) any later version. The code is
* distributed WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU GPL
* for more details.
*
* As additional permission under GNU GPL version 3 section 7, you may
* distribute non-source (e.g., minimized or compacted) forms of that code
* without the copy of the GNU GPL normally required by section 4, provided
* you include this license notice and a URL through which recipients can
* access the Corresponding Source.
*
* @licend The above is the entire license notice for the JavaScript code
* in this page.
*/
//--><!]]>
</script>
<script
type="module"
src="/content/js/ttytheme/events.js"
defer
></script>
<script type="module" src="/content/js/ttytheme/menu.js" defer></script>
<link rel="stylesheet" href="/content/styles/clean/index.css" />
<link rel="stylesheet" href="/content/styles/ttytheme/styles.css" />
</head>
<body>
<h1>Linux TTY theme generator by Ari::web</h1>
<h2>
For faster theming see
<a href="/page/ttytheme/settings">settings</a>
</h2>
<h2>
All themes generated here are under
<a href="https://unlicense.org/" target="_blank">unlicense</a>, but
credit is appriciated :), source code:
<a href="/git" target="_blank">git</a>
</h2>
<noscript>
<div class="nojs">
<h1>This generator won't work without JavaScript enabled :(</h1>
<h1>
If you don't trust me, check the JavaScript yourself
<a
href="https://github.com/TruncatedDinosour/website/tree/terminal/content/js/ttytheme"
target="_blank"
>on GitHub</a
>
</h1>
</div>
</noscript>
<div class="buttons">
<button id="clear-states">Clear saved slider states</button>
<button id="generate-theme">Generate (refresh) theme</button>
<button id="export-file">Export theme as file</button>
<button id="copy">Copy to clipboard</button>
</div>
<div class="split">
<div id="menu"></div>
<pre id="theme-output" class="output"></pre>
</div>
</body>
</html>