Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/elforastero/prismjs-github
prism.js color scheme close to GitHub colors
https://github.com/elforastero/prismjs-github
code-highlight github-theme prismjs syntax syntax-highlighting
Last synced: 4 days ago
JSON representation
prism.js color scheme close to GitHub colors
- Host: GitHub
- URL: https://github.com/elforastero/prismjs-github
- Owner: ElForastero
- License: mit
- Created: 2019-04-18T17:21:52.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-03-28T14:16:25.000Z (over 2 years ago)
- Last Synced: 2024-10-22T21:01:38.033Z (24 days ago)
- Topics: code-highlight, github-theme, prismjs, syntax, syntax-highlighting
- Language: CSS
- Homepage:
- Size: 89.8 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# prismjs-github
prism.js color scheme close to GitHub colors```jsx
import React from 'react';
import classNames from 'classnames/bind';
import styles from './Container.module.css';const cx = classNames.bind(styles);
const Container = ({ children }) => (
{children}
);export default Container;
```