Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/cometkim/gatsby-theme-stitches

A GatsbyJS plugin for styling with Stitches
https://github.com/cometkim/gatsby-theme-stitches

css-in-js gatsby gatsby-plugin gatsby-theme

Last synced: 3 months ago
JSON representation

A GatsbyJS plugin for styling with Stitches

Awesome Lists containing this project

README

        

# gatsby-theme-stitches

![npm](https://img.shields.io/npm/v/gatsby-theme-stitches)
![GitHub](https://img.shields.io/github/license/cometkim/gatsby-theme-stitches)

A GatsbyJS plugin for styling with [Stitches](https://stitches.dev/)

## Install

```bash
yarn add gatsby-theme-stitches @stitches/react
```

## Usage

```js
// Add plugin to gatsby-config.js
plugin: ['gatsby-theme-stitches']
```

That's it! You can import sitiches module from `gatsby-plugin-stitches/src/config`;

```js
import { styled } from 'gatsby-theme-stitches/src/config';

const Container = styled("div", {
margin: 10,
backgroundColor: 'red',
});
```

And also you can create your own config by shadowing the `gatsby-theme-stitches/src/config` module.

```js
// src/gatsby-theme-stitches/config.ts

import { createStitches } from '@stitches/react';

// You should exports all properties
export const {
styled,
css,
globalCss,
keyframes,
getCssText,
theme,
createTheme,
config,
} = createStitches({
// See the [configuration guide](https://stitches.dev/docs/tokens)
});
```

### TypeScript

Add a module resolution to your `tsconfig.json` file to get autocompletion.

```json
{
"baseUrl": ".",
"paths": {
"gatsby-theme-stitches/src/*": ["./src/gatsby-theme-stitches/*"]
}
}
```

## LICENSE

MIT