@intergrav/dev.css 3.1.1 → 3.2.0
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/README.md +98 -122
- package/addon/header-sidebar.css +35 -35
- package/addon/header-sticky.css +9 -9
- package/demo.html +294 -294
- package/dev.css +499 -488
- package/package.json +32 -30
- package/theme/boilerplate-auto.css +54 -51
- package/theme/boilerplate.css +23 -22
- package/theme/catppuccin-frappe.css +50 -47
- package/theme/catppuccin-macchiato.css +50 -47
- package/theme/catppuccin-mocha.css +50 -47
- package/theme/day.css +18 -17
- package/theme/night.css +18 -17
- package/theme/terminal.css +24 -23
package/theme/terminal.css
CHANGED
|
@@ -1,23 +1,24 @@
|
|
|
1
|
-
/* theme for dev.css v3, a classless CSS framework - https://github.com/intergrav/dev.css */
|
|
2
|
-
/* about: has a similar look to a computer terminal */
|
|
3
|
-
|
|
4
|
-
@import url("https://cdn.jsdelivr.net/npm/@intergrav/fonts@1/serve/geist-mono.min.css");
|
|
5
|
-
|
|
6
|
-
:root {
|
|
7
|
-
/* font families */
|
|
8
|
-
--dc-font-sans: "Geist Mono", monospace;
|
|
9
|
-
--dc-font-mono: "Geist Mono", monospace;
|
|
10
|
-
|
|
11
|
-
/* colors */
|
|
12
|
-
--dc-
|
|
13
|
-
--dc-tx-
|
|
14
|
-
--dc-
|
|
15
|
-
--dc-bg-
|
|
16
|
-
--dc-bg-
|
|
17
|
-
--dc-
|
|
18
|
-
--dc-
|
|
19
|
-
--dc-lkb-
|
|
20
|
-
--dc-lkb-
|
|
21
|
-
--dc-
|
|
22
|
-
--dc-ac-
|
|
23
|
-
|
|
1
|
+
/* theme for dev.css v3, a classless CSS framework - https://github.com/intergrav/dev.css */
|
|
2
|
+
/* about: has a similar look to a computer terminal */
|
|
3
|
+
|
|
4
|
+
@import url("https://cdn.jsdelivr.net/npm/@intergrav/fonts@1/serve/geist-mono.min.css");
|
|
5
|
+
|
|
6
|
+
:root {
|
|
7
|
+
/* font families */
|
|
8
|
+
--dc-font-sans: "Geist Mono", monospace;
|
|
9
|
+
--dc-font-mono: "Geist Mono", monospace;
|
|
10
|
+
|
|
11
|
+
/* colors */
|
|
12
|
+
--dc-cs: dark;
|
|
13
|
+
--dc-tx-1: #ffffff;
|
|
14
|
+
--dc-tx-2: #eeeeee;
|
|
15
|
+
--dc-bg-1: #000000;
|
|
16
|
+
--dc-bg-2: #002700;
|
|
17
|
+
--dc-bg-3: #005800;
|
|
18
|
+
--dc-lk-1: #00ff00;
|
|
19
|
+
--dc-lkb-1: #00ff00;
|
|
20
|
+
--dc-lkb-2: #00d400;
|
|
21
|
+
--dc-lkb-tx: #000000;
|
|
22
|
+
--dc-ac-1: #00ff00;
|
|
23
|
+
--dc-ac-tx: #000000;
|
|
24
|
+
}
|