All Projects → beerose → Theme Ui Sketchy

beerose / Theme Ui Sketchy

Licence: mit
Sketchy Theme UI Preset

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Theme Ui Sketchy

Www Rpcs3
This is a responsive website designed to house and promote the progress of RPCS3, an open-source PlayStation 3 emulator and debugger written in C++. This repository is regularly updated.
Stars: ✭ 164 (-1.2%)
Mutual labels:  hacktoberfest
React Image Annotate
Create image annotations. Classify, tag images with polygons, bounding boxes or points.
Stars: ✭ 165 (-0.6%)
Mutual labels:  hacktoberfest
Jenkins.io
A static site for the Jenkins automation server
Stars: ✭ 165 (-0.6%)
Mutual labels:  hacktoberfest
Buttercup Browser Extension
🌏 Buttercup browser extension
Stars: ✭ 164 (-1.2%)
Mutual labels:  hacktoberfest
Consumerfinance.gov
Django project protecting American consumers
Stars: ✭ 164 (-1.2%)
Mutual labels:  hacktoberfest
Granite
Library that extends GTK with common widgets and utilities
Stars: ✭ 164 (-1.2%)
Mutual labels:  hacktoberfest
Django Loci
Reusable Django app for storing geographic and indoor coordinates. Maintained by the OpenWISP Project.
Stars: ✭ 164 (-1.2%)
Mutual labels:  hacktoberfest
Sylius Standard
Open Source eCommerce Application on top of Symfony
Stars: ✭ 165 (-0.6%)
Mutual labels:  hacktoberfest
Polybar Spotify
🎵 Spotify status and controls module for Polybar with text scrolling
Stars: ✭ 162 (-2.41%)
Mutual labels:  hacktoberfest
Pygem
Python Geometrical Morphing
Stars: ✭ 164 (-1.2%)
Mutual labels:  hacktoberfest
Matrix Appservice Slack
A Matrix <--> Slack bridge
Stars: ✭ 164 (-1.2%)
Mutual labels:  hacktoberfest
Supervisor
PHP library for managing Supervisor through XML-RPC API
Stars: ✭ 163 (-1.81%)
Mutual labels:  hacktoberfest
Gatsby Theme Superstylin
💅 A Gatsby Theme with styled-components
Stars: ✭ 165 (-0.6%)
Mutual labels:  hacktoberfest
Fuzzinator
Fuzzinator Random Testing Framework
Stars: ✭ 164 (-1.2%)
Mutual labels:  hacktoberfest
Dot Hammerspoon
My personal Hammerspoon configuration - mirrored from GitLab
Stars: ✭ 165 (-0.6%)
Mutual labels:  hacktoberfest
Go Openvswitch
Go packages which enable interacting with Open vSwitch and related tools. Apache 2.0 Licensed.
Stars: ✭ 164 (-1.2%)
Mutual labels:  hacktoberfest
Jenkins Zh
Jenkins 中文社区网站源码
Stars: ✭ 165 (-0.6%)
Mutual labels:  hacktoberfest
Cucumber Eclipse
Eclipse plugin for Cucumber
Stars: ✭ 165 (-0.6%)
Mutual labels:  hacktoberfest
Micropad Core
µPad (MicroPad) is an open digital note taking app
Stars: ✭ 165 (-0.6%)
Mutual labels:  hacktoberfest
Knoxite
A data storage & backup system
Stars: ✭ 165 (-0.6%)
Mutual labels:  hacktoberfest

npm

Theme UI Sketchy Preset

Screenshot 2020-04-28 at 21 13 52

For detailed specifications check out the demo page.

Or try it out in CodeSandbox.

💥 Installation

npm i theme-ui-sketchy-preset # yarn add theme-ui-sketchy-preset

🙇‍♀️ Usage

This library exports the theme object compliant with Theme UI theme specification that can be passed to your theme provider.

import { ThemeProvider } from "theme-ui"
import sketchy from "theme-ui-sketchy-preset"

const App = props => (
  <ThemeProvider theme={sketchy}>{props.children}</ThemeProvider>
)

It can be also extended or modified:

import sketchy from "theme-ui-sketchy-preset"

const myTheme = {
  ...sketchy,
  colors: {
    text: "#000",
    background: "#fff",
    primary: "#33e",
  },
}

This preset uses Architects Daughter font, so you need to copy this code into the <head> of your HTML document:

<link
  rel="stylesheet"
  href="https://fonts.googleapis.com/css?family=Architects+Daughter"
/>

🚀 Development quick start

  1. Clone the repository

    git clone [email protected]:beerose/theme-ui-sketchy.git
    
  2. Install dependencies and start the project

    cd theme-ui-sketchy
    yarn
    yarn start
    
  3. Open the source code and start editing!

    Your site is now running at http://localhost:8000!

    Note: You'll also see a second link: http://localhost:8000/___graphql. This is a tool you can use to experiment with querying your data. Learn more about using this tool in the Gatsby tutorial.

🧐 What's inside?

A quick look at the top-level files and directories you'll see in this Gatsby project.

.
├── node_modules
├── src
├── .gitignore
├── .prettierrc
├── gatsby-config.js
├── LICENSE
├── package.json
└── README.md
  1. /node_modules: This directory contains all of the modules of code that your project depends on (npm packages) and are automatically installed.

  2. /src: This directory will contain all of the code related to what you will see on the front-end of your site.

  3. .gitignore: This file tells git which files it should not track / not maintain a version history for.

  4. .prettierrc: This is a configuration file for Prettier. Prettier is a tool to help keep the formatting of your code consistent.

  5. gatsby-config.js: This is the main configuration file for a Gatsby site. This is where you can specify information about your site (metadata) like the site title and description, which Gatsby plugins you’d like to include, etc. (Check out the config docs for more detail).

  6. LICENSE: Project's license.

  7. package.json: A manifest file for Node.js projects, which includes things like metadata (the project’s name, author, etc). This manifest is how npm knows which packages to install for your project.

  8. README.md: A text file containing useful reference information about your project.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].