How to use a Prism theme
masterTo apply a theme to your project, include the specific theme's CSS file in the <head> section of your HTML document. Ensure that the prism.js library script is also included in your page (typically before the closing </body> tag) to enable syntax highlighting.
<!DOCTYPE html>
<html <head>
...
<link href="themes/prism-ghcolors.css" rel="stylesheet" />
</head>
<body>
...
<script src="prism.js"></script>
</body>
</html>