Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add One Light and One Dark Themes #224

Merged
merged 5 commits into from
Sep 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/khaki-frogs-behave.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"prism-react-renderer": minor
---

Added oneDark and oneLight themes
2 changes: 1 addition & 1 deletion packages/demo/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ type ThemeType = keyof typeof themes
function App() {
const [activeSampleCodeType, setActiveSampleCodeType] =
useState<SampleCodeType>("TypeScript with React")
const [activeThemeName, setActiveThemeName] = useState<ThemeType>("nightOwl")
const [activeThemeName, setActiveThemeName] = useState<ThemeType>("oneDark")

const activeSampleCode = sampleCode[activeSampleCodeType]
const activeTheme = themes[activeThemeName]
Expand Down
2 changes: 2 additions & 0 deletions packages/prism-react-renderer/src/themes/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,5 @@ export { default as vsDark } from "./vsDark"
export { default as vsLight } from "./vsLight"
export { default as jettwaveDark } from "./jettwaveDark"
export { default as jettwaveLight } from "./jettwaveLight"
export { default as oneDark } from "./oneDark"
export { default as oneLight } from "./oneLight"
109 changes: 109 additions & 0 deletions packages/prism-react-renderer/src/themes/oneDark.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
/*
Adapted from the Prism One Dark Theme
https://github.com/PrismJS/prism-themes/blob/master/themes/prism-one-dark.css
Created by Marc Rousavy (@mrousavy) on 26.9.2023
*/
import type { PrismTheme } from "../types"

const theme: PrismTheme = {
plain: {
backgroundColor: "hsl(220, 13%, 18%)",
color: "hsl(220, 14%, 71%)",
textShadow: "0 1px rgba(0, 0, 0, 0.3)",
},
styles: [
{
types: ["comment", "prolog", "cdata"],
style: {
color: "hsl(220, 10%, 40%)",
},
},
{
types: ["doctype", "punctuation", "entity"],
style: {
color: "hsl(220, 14%, 71%)",
},
},
{
types: [
"attr-name",
"class-name",
"maybe-class-name",
"boolean",
"constant",
"number",
"atrule",
],
style: { color: "hsl(29, 54%, 61%)" },
},
{
types: ["keyword"],
style: { color: "hsl(286, 60%, 67%)" },
},
{
types: ["property", "tag", "symbol", "deleted", "important"],
style: {
color: "hsl(355, 65%, 65%)",
},
},

{
types: [
"selector",
"string",
"char",
"builtin",
"inserted",
"regex",
"attr-value",
],
style: {
color: "hsl(95, 38%, 62%)",
},
},
{
types: ["variable", "operator", "function"],
style: {
color: "hsl(207, 82%, 66%)",
},
},
{
types: ["url"],
style: {
color: "hsl(187, 47%, 55%)",
},
},
{
types: ["deleted"],
style: {
textDecorationLine: "line-through",
},
},
{
types: ["inserted"],
style: {
textDecorationLine: "underline",
},
},
{
types: ["italic"],
style: {
fontStyle: "italic",
},
},
{
types: ["important", "bold"],
style: {
fontWeight: "bold",
},
},
{
types: ["important"],
style: {
color: "hsl(220, 14%, 71%)",
},
},
],
}

export default theme
112 changes: 112 additions & 0 deletions packages/prism-react-renderer/src/themes/oneLight.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
/*
Adapted from the Prism One Light Theme
https://github.com/PrismJS/prism-themes/blob/master/themes/prism-one-light.css
Created by Marc Rousavy (@mrousavy) on 26.9.2023
*/
import type { PrismTheme } from "../types"

const theme: PrismTheme = {
plain: {
backgroundColor: "hsl(230, 1%, 98%)",
color: "hsl(230, 8%, 24%)",
},
styles: [
{
types: ["comment", "prolog", "cdata"],
style: {
color: "hsl(230, 4%, 64%)",
},
},
{
types: ["doctype", "punctuation", "entity"],
style: {
color: "hsl(230, 8%, 24%)",
},
},
{
types: [
"attr-name",
"class-name",
"boolean",
"constant",
"number",
"atrule",
],
style: {
color: "hsl(35, 99%, 36%)",
},
},
{
types: ["keyword"],
style: {
color: "hsl(301, 63%, 40%)",
},
},

{
types: ["property", "tag", "symbol", "deleted", "important"],
style: {
color: "hsl(5, 74%, 59%)",
},
},
{
types: [
"selector",
"string",
"char",
"builtin",
"inserted",
"regex",
"attr-value",
"punctuation",
],
style: {
color: "hsl(119, 34%, 47%)",
},
},
{
types: ["variable", "operator", "function"],
style: {
color: "hsl(221, 87%, 60%)",
},
},
{
types: ["url"],
style: {
color: "hsl(198, 99%, 37%)",
},
},
{
types: ["deleted"],
style: {
textDecorationLine: "line-through",
},
},
{
types: ["inserted"],
style: {
textDecorationLine: "underline",
},
},
{
types: ["italic"],
style: {
fontStyle: "italic",
},
},
{
types: ["important", "bold"],
style: {
fontWeight: "bold",
},
},
{
types: ["important"],
style: {
color: "hsl(230, 8%, 24%)",
},
},
],
}

export default theme