Skip to content

Commit 7bfff88

Browse files
authored
feat: osmium solidbase theme (#1453)
1 parent 5e99505 commit 7bfff88

File tree

4 files changed

+50
-0
lines changed

4 files changed

+50
-0
lines changed

osmium/README.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Osmium
2+
3+
Official SolidJS docs theme for SolidBase.
4+
5+
## Installation
6+
7+
```sh
8+
npm i solidbase-osmium
9+
```
10+
11+
In your `vite.config.ts`:
12+
13+
```ts
14+
import { osmium } from "solidbase-osmium";
15+
16+
const solidBase = createSolidBase(osmium);
17+
18+
export default defineConfig({
19+
...solidBase.startConfig({
20+
...
21+
}),
22+
plugins: [solidBase.plugin({ ... })],
23+
})
24+
```
25+
26+
More information in the [SolidBase docs for consuming a theme.](https://solidbase.dev/guide/customization/custom-themes#consuming-a-theme)

osmium/package.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "solidbase-osmium",
3+
"version": "0.0.0",
4+
"description": "Official SolidJS docs theme for SolidBase.",
5+
"type": "module",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"url": "https://github.com/solidjs/solid-docs"
11+
},
12+
"keywords": [
13+
"solid",
14+
"solidjs",
15+
"solidbase",
16+
"theme"
17+
],
18+
"license": "MIT"
19+
}

pnpm-lock.yaml

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pnpm-workspace.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,6 @@ minimumReleaseAgeExclude:
33
- "solid-js"
44
- "@solidjs/*"
55
- "@kobalte/solidbase"
6+
packages:
7+
- "."
8+
- "osmium"

0 commit comments

Comments
 (0)