Add Catppuccin colors.
This commit is contained in:
parent
5669510d9c
commit
e53bea8fe4
|
@ -9,7 +9,7 @@
|
||||||
<link rel="shortcut icon" href="/queue.png" type="image/png">
|
<link rel="shortcut icon" href="/queue.png" type="image/png">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body class="catppuccin">
|
||||||
<noscript>
|
<noscript>
|
||||||
This WebExtension doesn't work without JavaScript enabled, sorry! 😭
|
This WebExtension doesn't work without JavaScript enabled, sorry! 😭
|
||||||
</noscript>
|
</noscript>
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
// Colors are from the Catppuccin palette.
|
||||||
|
// https://catppuccin.com
|
||||||
|
// License: MIT
|
||||||
|
|
||||||
|
.catppuccin {
|
||||||
|
// The comments after each color indicate which variant and variable it is.
|
||||||
|
--bg-1: #1e1e2e; // Mocha $base
|
||||||
|
--bg-2: #6c7086; // Mocha $overlay0
|
||||||
|
--fg-1: #eff1f5; // Frappe $base
|
||||||
|
--fg-2: #a6adc8; // Mocha $subtext0
|
||||||
|
}
|
Loading…
Reference in New Issue