prism-material-themes
v1.0.5
Published
Themes for the Prism syntax highlighting library based on the Material color scheme
Downloads
2,395
Maintainers
Readme
Prism Material Themes
This repository contains the source code for themes for the Prism syntax highlighting library based on the wonderful Material theme!
Installation
The themes are available on npm
:
npm install prism-material-themes
Usage
The themes are located in the package's themes/
directory in the form of CSS files.
Copy and include as asset manually
You can copy the theme you'd like to use into your project and use it like so:
<!DOCTYPE html>
<html>
<head>
...
<link href="themes/material-default.css" rel="stylesheet" />
</head>
<body>
...
<script src="prism.js"></script>
</body>
</html>
Import using a bundler like webpack
import 'prism-material-themes/themes/material-default.css';