thelounge-theme-chatpotion-ayu-mirage 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +46 -0
- package/package.json +36 -0
- package/theme.css +1468 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 ggvolta
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files, to deal in the Software
|
|
7
|
+
without restriction, including without limitation the rights to use, copy,
|
|
8
|
+
modify, merge, publish, distribute, sublicense, and/or sell copies of the
|
|
9
|
+
Software, and to permit persons to whom the Software is furnished to do so,
|
|
10
|
+
subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# ChatPotion Ayu Mirage
|
|
2
|
+
|
|
3
|
+
Ayu Mirage theme from **ChatPotion** for [The Lounge](https://thelounge.chat/) IRC client.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
Install this theme with The Lounge:
|
|
8
|
+
|
|
9
|
+
```sh
|
|
10
|
+
thelounge install thelounge-theme-chatpotion-ayu-mirage
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Then open The Lounge settings and select:
|
|
14
|
+
|
|
15
|
+
```text
|
|
16
|
+
ChatPotion Ayu Mirage
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Recommended Base Theme
|
|
20
|
+
|
|
21
|
+
This theme works best when used with The Lounge's **Morning** base theme.
|
|
22
|
+
|
|
23
|
+
## ChatPotion
|
|
24
|
+
|
|
25
|
+
This package is part of the full ChatPotion theme collection:
|
|
26
|
+
|
|
27
|
+
https://github.com/ggvolta/ChatPotion
|
|
28
|
+
|
|
29
|
+
## Support
|
|
30
|
+
|
|
31
|
+
ChatPotion is free and open source. If you like the project and want to support future updates, you can donate here:
|
|
32
|
+
|
|
33
|
+
- **Bitcoin:** `152t9E459z3o2C7Nt5ZsFCgfV6YcKtEph8`
|
|
34
|
+
- **Ethereum:** `0xf5e3dc3f7b421f66fd53b83a1e24dfe0f3b06103`
|
|
35
|
+
- **Solana:** `DwkYxTJ33QUzuuDP4GLJNSzLWD3wUHjiCyiW4ztzYcwW`
|
|
36
|
+
- **Dogecoin:** `DRyszSw99c7z82nfZBjrCgdPmc5QGymC74`
|
|
37
|
+
- **Litecoin:** `LQLoyKQuyd2gCGrNn6FLfVjjHuUz5oPXnm`
|
|
38
|
+
|
|
39
|
+
Please double-check the address and network before sending. Crypto transactions cannot be reversed.
|
|
40
|
+
|
|
41
|
+
If you would like to be added to the supporters list, you can contact me at `acidvoltax@proton.me`.
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
## License
|
|
45
|
+
|
|
46
|
+
MIT License.
|
package/package.json
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "thelounge-theme-chatpotion-ayu-mirage",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Ayu Mirage theme from ChatPotion for The Lounge IRC client.",
|
|
5
|
+
"main": "package.json",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"thelounge",
|
|
8
|
+
"thelounge-theme",
|
|
9
|
+
"irc",
|
|
10
|
+
"theme",
|
|
11
|
+
"css",
|
|
12
|
+
"dark-theme",
|
|
13
|
+
"chatpotion"
|
|
14
|
+
],
|
|
15
|
+
"thelounge": {
|
|
16
|
+
"css": "theme.css",
|
|
17
|
+
"name": "ChatPotion Ayu Mirage",
|
|
18
|
+
"type": "theme"
|
|
19
|
+
},
|
|
20
|
+
"homepage": "https://github.com/ggvolta/ChatPotion#readme",
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "git+https://github.com/ggvolta/ChatPotion.git",
|
|
24
|
+
"directory": "packages/thelounge-theme-chatpotion-ayu-mirage"
|
|
25
|
+
},
|
|
26
|
+
"bugs": {
|
|
27
|
+
"url": "https://github.com/ggvolta/ChatPotion/issues"
|
|
28
|
+
},
|
|
29
|
+
"author": "ggvolta",
|
|
30
|
+
"license": "MIT",
|
|
31
|
+
"files": [
|
|
32
|
+
"theme.css",
|
|
33
|
+
"README.md",
|
|
34
|
+
"LICENSE"
|
|
35
|
+
]
|
|
36
|
+
}
|