@rackbops/styles 0.1.8 → 0.1.10
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 +25 -0
- package/NOTICE +40 -0
- package/arcane-obsidian/components/wordmark.css +7 -0
- package/arcane-parchment/components/wordmark.css +7 -0
- package/package.json +6 -3
package/LICENSE
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 roshne
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, 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.
|
|
22
|
+
|
|
23
|
+
Portions of the Software (certain themes under styles/) are adapted from
|
|
24
|
+
third-party works used under their own, separate MIT copyright notice; see
|
|
25
|
+
NOTICE.
|
package/NOTICE
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
This product includes design-system themes adapted from a third-party project.
|
|
2
|
+
|
|
3
|
+
------------------------------------------------------------------------------
|
|
4
|
+
nazuraki/ui-std-lib (@nazuraki/styles)
|
|
5
|
+
https://github.com/nazuraki/ui-std-lib
|
|
6
|
+
------------------------------------------------------------------------------
|
|
7
|
+
|
|
8
|
+
The following themes under styles/ are ports of themes from nazuraki/ui-std-lib,
|
|
9
|
+
re-namespaced from the --nb-* / .nb-* / data-nb-style contract to the rackbops
|
|
10
|
+
--rb-* contract. The aesthetics (palettes, typography, component designs) are
|
|
11
|
+
nazuraki's; the rackbops copies change only the token/class names and adapt each
|
|
12
|
+
theme to the rackbops baseline token set.
|
|
13
|
+
|
|
14
|
+
- styles/luminous-precision/
|
|
15
|
+
- styles/neon-butterfly/ (includes assets/butterfly-circuit.png)
|
|
16
|
+
- styles/summer-cloud/
|
|
17
|
+
|
|
18
|
+
They are used under the MIT License:
|
|
19
|
+
|
|
20
|
+
MIT License
|
|
21
|
+
|
|
22
|
+
Copyright (c) 2026 nazuraki
|
|
23
|
+
|
|
24
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
25
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
26
|
+
in the Software without restriction, including without limitation the rights
|
|
27
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
28
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
29
|
+
furnished to do so, subject to the following conditions:
|
|
30
|
+
|
|
31
|
+
The above copyright notice and this permission notice shall be included in all
|
|
32
|
+
copies or substantial portions of the Software.
|
|
33
|
+
|
|
34
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
35
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
36
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
37
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
38
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
39
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
40
|
+
SOFTWARE.
|
|
@@ -4,6 +4,13 @@
|
|
|
4
4
|
* active tab underline are the only two places the gradient is spent. */
|
|
5
5
|
:where([data-rb-style="arcane-obsidian"], [data-rb-style="arcane-obsidian"] *).rb-wordmark {
|
|
6
6
|
display: inline-flex;
|
|
7
|
+
/* Sizes to its own content, never to a flex/grid ancestor's cross-axis stretch (e.g. a
|
|
8
|
+
column-flex parent with default align-items) -- without this, the box widens far past the
|
|
9
|
+
visible glyphs, so the gradient below spends most of its span on empty space and the text
|
|
10
|
+
only ever samples its first, near-uniform violet stretch instead of sweeping through orchid
|
|
11
|
+
and gold. inline-flex alone does not protect against this: it governs this element's OWN
|
|
12
|
+
children's layout, not how the element itself is sized within its parent. */
|
|
13
|
+
width: fit-content;
|
|
7
14
|
align-items: baseline;
|
|
8
15
|
gap: 0.4em;
|
|
9
16
|
margin: 0;
|
|
@@ -4,6 +4,13 @@
|
|
|
4
4
|
* active tab underline are the only two places the gradient is spent. */
|
|
5
5
|
:where([data-rb-style="arcane-parchment"], [data-rb-style="arcane-parchment"] *).rb-wordmark {
|
|
6
6
|
display: inline-flex;
|
|
7
|
+
/* Sizes to its own content, never to a flex/grid ancestor's cross-axis stretch (e.g. a
|
|
8
|
+
column-flex parent with default align-items) -- without this, the box widens far past the
|
|
9
|
+
visible glyphs, so the gradient below spends most of its span on empty space and the text
|
|
10
|
+
only ever samples its first, near-uniform violet stretch instead of sweeping through orchid
|
|
11
|
+
and gold. inline-flex alone does not protect against this: it governs this element's OWN
|
|
12
|
+
children's layout, not how the element itself is sized within its parent. */
|
|
13
|
+
width: fit-content;
|
|
7
14
|
align-items: baseline;
|
|
8
15
|
gap: 0.4em;
|
|
9
16
|
margin: 0;
|
package/package.json
CHANGED
|
@@ -1,17 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rackbops/styles",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.10",
|
|
4
4
|
"description": "Rackbops design-system styles: tokens, base styles, and component classes per theme.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
|
-
"url": "git+https://github.com/
|
|
8
|
+
"url": "git+https://github.com/Rackbops/rackbops-ui-ux-std-lib.git",
|
|
9
9
|
"directory": "styles"
|
|
10
10
|
},
|
|
11
11
|
"publishConfig": {
|
|
12
12
|
"access": "public"
|
|
13
13
|
},
|
|
14
14
|
"scripts": {
|
|
15
|
+
"prepack": "node ../scripts/copy-license.mjs",
|
|
15
16
|
"test": "node --test"
|
|
16
17
|
},
|
|
17
18
|
"devDependencies": {
|
|
@@ -33,7 +34,9 @@
|
|
|
33
34
|
"all.css",
|
|
34
35
|
"manifest.json",
|
|
35
36
|
"contract.json",
|
|
36
|
-
"css-side-effect.d.ts"
|
|
37
|
+
"css-side-effect.d.ts",
|
|
38
|
+
"LICENSE",
|
|
39
|
+
"NOTICE"
|
|
37
40
|
],
|
|
38
41
|
"exports": {
|
|
39
42
|
"./all": { "types": "./css-side-effect.d.ts", "default": "./all.css" },
|