Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
brendt committed Mar 15, 2024
1 parent ee5c089 commit 9f919c0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 18 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ $code = $highlighter->parse(htmlentities($raw), 'php');
Next, you can import one of the provided themes:

```css
@import "../vendor/tempest/highlight/src/Themes/highlight-tempest.css";
@import "../vendor/tempest/highlight/src/Themes/highlight-light-lite.css";
```

Expand Down Expand Up @@ -49,4 +48,6 @@ Or you can build your own with just a couple of classes:
.hl-comment {
color: #888888;
}
```
```

You should style your any pre tags yourself.
8 changes: 0 additions & 8 deletions src/Themes/highlight-light-lite.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,6 @@
--comment-color: #888888;
}

.prose pre {
background-color: var(--background-color);
color: var(--text-color);
max-width: 100%;
overflow-x: auto;
width: 100%;
}

.hl-keyword {
color: var(--keyword-color);
}
Expand Down
8 changes: 0 additions & 8 deletions src/Themes/highlight-tempest.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,6 @@
--comment-color: #888888;
}

.prose pre {
background-color: var(--background-color);
color: var(--text-color);
max-width: 100%;
overflow-x: auto;
width: 100%;
}

.hl-keyword {
color: var(--keyword-color);
}
Expand Down

0 comments on commit 9f919c0

Please sign in to comment.