comparison third_party/highlight/styles/paraiso-light.css @ 157:2db6253f355d

[ThirdParty] Added highlight library for better readability on blog.
author June Park <parkjune1995@gmail.com>
date Tue, 13 Jan 2026 19:18:47 -0800
parents
children
comparison
equal deleted inserted replaced
156:cd35e600ae34 157:2db6253f355d
1 pre code.hljs {
2 display: block;
3 overflow-x: auto;
4 padding: 1em
5 }
6 code.hljs {
7 padding: 3px 5px
8 }
9 /*
10 Paraíso (light)
11 Created by Jan T. Sott (http://github.com/idleberg)
12 Inspired by the art of Rubens LP (http://www.rubenslp.com.br)
13 */
14 .hljs {
15 background: #e7e9db;
16 color: #4f424c
17 }
18 /* Paraíso Comment */
19 .hljs-comment,
20 .hljs-quote {
21 color: #776e71
22 }
23 /* Paraíso Red */
24 .hljs-variable,
25 .hljs-template-variable,
26 .hljs-tag,
27 .hljs-name,
28 .hljs-selector-id,
29 .hljs-selector-class,
30 .hljs-regexp,
31 .hljs-link,
32 .hljs-meta {
33 color: #ef6155
34 }
35 /* Paraíso Orange */
36 .hljs-number,
37 .hljs-built_in,
38 .hljs-literal,
39 .hljs-type,
40 .hljs-params,
41 .hljs-deletion {
42 color: #f99b15
43 }
44 /* Paraíso Yellow */
45 .hljs-title,
46 .hljs-section,
47 .hljs-attribute {
48 color: #fec418
49 }
50 /* Paraíso Green */
51 .hljs-string,
52 .hljs-symbol,
53 .hljs-bullet,
54 .hljs-addition {
55 color: #48b685
56 }
57 /* Paraíso Purple */
58 .hljs-keyword,
59 .hljs-selector-tag {
60 color: #815ba4
61 }
62 .hljs-emphasis {
63 font-style: italic
64 }
65 .hljs-strong {
66 font-weight: bold
67 }