Skip to content

Commit

Permalink
skins: Updated pixel skin
Browse files Browse the repository at this point in the history
  • Loading branch information
Prozilla committed Oct 30, 2024
1 parent 0a8a9a0 commit fa0328f
Show file tree
Hide file tree
Showing 12 changed files with 38 additions and 0 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions docs/src/about/skins.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,11 @@ A minimalistic skin with monochrome icons.
### Credits

- [FontAwesome icons](https://fontawesome.com/)

## [Pixel](https://os.prozilla.dev/?skin=pixel)

A pixel art skin for ProzillaOS with pixelated icons and wallpapers.

### Screenshot

![Preview of the Pixel skin](/screenshots/skins/pixel.png)
Binary file added docs/src/public/screenshots/skins/pixel.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
30 changes: 30 additions & 0 deletions docs/src/reference/skins/classes/skin.md
Original file line number Diff line number Diff line change
Expand Up @@ -229,3 +229,33 @@ export function App(): ReactElement {
</ProzillaOS>;
}
```

### pixelSkin

A pixelated skin with pixel art

#### Preview

![Preview of the Pixel skin](/screenshots/skins/pixel.png)

#### Example

```tsx
// App.tsx

import { Desktop, ModalsView, ProzillaOS, Taskbar, WindowsView } from "prozilla-os";
import { pixelSkin } from "@prozilla-os/skins"; // [!code highlight]

export function App(): ReactElement {
return <ProzillaOS
systemName={"Example"}
tagLine={"Powered by ProzillaOS"}
skin={pixelSkin} // [!code highlight]
>
<Taskbar/>
<WindowsView/>
<ModalsView/>
<Desktop/>
</ProzillaOS>;
}
```

0 comments on commit fa0328f

Please sign in to comment.