Minimal-mistakes로 깃헙 블로그를 만들면 default 테마가 적용되는데, 이 테마의 코드 블럭 스타일은 기본적으로 다크모드다… 하지만 나는 다크모드를 별로 좋아하지 않기 때문에 코드 블럭 스타일을 라이트모드로 바꾸기로 했다 🤩

1️⃣ 코드 블럭 스타일 바꾸기 _syntax.scss

하기 코드를 통째로 복사해서 _syntax.scss 파일에 붙여넣기 하면 된다!
바꾸고 싶은 스타일이 있으면 여기서 커스텀해서 사용하시길

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
/* ==========================================================================
   Syntax highlighting - Light Mode
   ========================================================================== */

div.highlighter-rouge,
figure.highlight {
  position: relative;
  margin-bottom: 1em;
  background: #f5f5f5;
  /* Light background color */
  color: #333;
  /* Dark text color */
  font-family: $monospace;
  font-size: $type-size-6;
  line-height: 1.8;
  border-radius: $border-radius;

  >pre,
  pre.highlight {
    margin: 0;
    padding: 1em;
  }
}

.highlight table {
  margin-bottom: 0;
  font-size: 1em;
  border: 0;

  td {
    padding: 0;
    width: calc(100% - 1em);
    border: 0;

    /* line numbers*/
    &.gutter,
    &.rouge-gutter {
      padding-right: 1em;
      width: 1em;
      color: #999;
      /* Light gray for line numbers */
      border-right: 1px solid #ddd;
      /* Light gray border */
      text-align: right;
    }

    /* code */
    &.code,
    &.rouge-code {
      padding-left: 1em;
    }
  }

  pre {
    margin: 0;
  }
}

.highlight pre {
  width: 100%;
}

.highlight .hll {
  background-color: #e0e0e0;
  /* Light highlight color */
}

.highlight {
  .c {
    /* Comment */
    color: #999;
    /* Light gray for comments */
  }

  .err {
    /* Error */
    color: #a00;
    /* Dark red for errors */
  }

  .k {
    /* Keyword */
    color: #07a;
    /* Blue for keywords */
  }

  .l {
    /* Literal */
    color: #690;
    /* Dark green for literals */
  }

  .n {
    /* Name */
    color: #333;
    /* Dark text color */
  }

  .o {
    /* Operator */
    color: #a67f59;
    /* Brown for operators */
  }

  .p {
    /* Punctuation */
    color: #333;
    /* Dark text color */
  }

  .cm {
    /* Comment.Multiline */
    color: #999;
    /* Light gray for comments */
  }

  .cp {
    /* Comment.Preproc */
    color: #999;
    /* Light gray for comments */
  }

  .c1 {
    /* Comment.Single */
    color: #999;
    /* Light gray for comments */
  }

  .cs {
    /* Comment.Special */
    color: #999;
    /* Light gray for comments */
  }

  .gd {
    /* Generic.Deleted */
    color: #a00;
    /* Dark red for deleted text */
  }

  .ge {
    /* Generic.Emph */
    font-style: italic;
  }

  .gh {
    /* Generic.Heading */
    color: #333;
    /* Dark text color */
    font-weight: bold;
  }

  .gi {
    /* Generic.Inserted */
    color: #690;
    /* Dark green for inserted text */
  }

  .gp {
    /* Generic.Prompt */
    color: #999;
    /* Light gray for prompts */
    font-weight: bold;
  }

  .gs {
    /* Generic.Strong */
    font-weight: bold;
  }

  .gu {
    /* Generic.Subheading */
    color: #07a;
    /* Blue for subheadings */
    font-weight: bold;
  }

  .kc {
    /* Keyword.Constant */
    color: #07a;
    /* Blue for constants */
  }

  .kd {
    /* Keyword.Declaration */
    color: #07a;
    /* Blue for declarations */
  }

  .kn {
    /* Keyword.Namespace */
    color: #a67f59;
    /* Brown for namespaces */
  }

  .kp {
    /* Keyword.Pseudo */
    color: #07a;
    /* Blue for pseudo keywords */
  }

  .kr {
    /* Keyword.Reserved */
    color: #07a;
    /* Blue for reserved keywords */
  }

  .kt {
    /* Keyword.Type */
    color: #a67f59;
    /* Brown for types */
  }

  .ld {
    /* Literal.Date */
    color: #690;
    /* Dark green for dates */
  }

  .m {
    /* Literal.Number */
    color: #690;
    /* Dark green for numbers */
  }

  .s {
    /* Literal.String */
    color: #690;
    /* Dark green for strings */
  }

  .na {
    /* Name.Attribute */
    color: #905;
    /* Dark pink for attributes */
  }

  .nb {
    /* Name.Builtin */
    color: #333;
    /* Dark text color */
  }

  .nc {
    /* Name.Class */
    color: #a67f59;
    /* Brown for classes */
  }

  .no {
    /* Name.Constant */
    color: #a00;
    /* Dark red for constants */
  }

  .nd {
    /* Name.Decorator */
    color: #a67f59;
    /* Brown for decorators */
  }

  .ni {
    /* Name.Entity */
    color: #333;
    /* Dark text color */
  }

  .ne {
    /* Name.Exception */
    color: #a00;
    /* Dark red for exceptions */
  }

  .nf {
    /* Name.Function */
    color: #905;
    /* Dark pink for functions */
  }

  .nl {
    /* Name.Label */
    color: #333;
    /* Dark text color */
  }

  .nn {
    /* Name.Namespace */
    color: #a67f59;
    /* Brown for namespaces */
  }

  .nx {
    /* Name.Other */
    color: #905;
    /* Dark pink for other names */
  }

  .py {
    /* Name.Property */
    color: #333;
    /* Dark text color */
  }

  .nt {
    /* Name.Tag */
    color: #a67f59;
    /* Brown for tags */
  }

  .nv {
    /* Name.Variable */
    color: #a00;
    /* Dark red for variables */
  }

  .ow {
    /* Operator.Word */
    color: #a67f59;
    /* Brown for operators */
  }

  .w {
    /* Text.Whitespace */
    color: #333;
    /* Dark text color */
  }

  .mf {
    /* Literal.Number.Float */
    color: #690;
    /* Dark green for floats */
  }

  .mh {
    /* Literal.Number.Hex */
    color: #690;
    /* Dark green for hex numbers */
  }

  .mi {
    /* Literal.Number.Integer */
    color: #690;
    /* Dark green for integers */
  }

  .mo {
    /* Literal.Number.Oct */
    color: #690;
    /* Dark green for octal numbers */
  }

  .sb {
    /* Literal.String.Backtick */
    color: #690;
    /* Dark green for backtick strings */
  }

  .sc {
    /* Literal.String.Char */
    color: #333;
    /* Dark text color */
  }

  .sd {
    /* Literal.String.Doc */
    color: #999;
    /* Light gray for doc strings */
  }

  .s2 {
    /* Literal.String.Double */
    color: #690;
    /* Dark green for double-quoted strings */
  }

  .se {
    /* Literal.String.Escape */
    color: #690;
    /* Dark green for escape sequences */
  }

  .sh {
    /* Literal.String.Heredoc */
    color: #690;
    /* Dark green for heredoc strings */
  }

  .si {
    /* Literal.String.Interpol */
    color: #690;
    /* Dark green for interpolated strings */
  }

  .sx {
    /* Literal.String.Other */
    color: #690;
    /* Dark green for other strings */
  }

  .sr {
    /* Literal.String.Regex */
    color: #690;
    /* Dark green for regex strings */
  }

  .s1 {
    /* Literal.String.Single */
    color: #690;
    /* Dark green for single-quoted strings */
  }

  .ss {
    /* Literal.String.Symbol */
    color: #690;
    /* Dark green for symbols */
  }

  .bp {
    /* Name.Builtin.Pseudo */
    color: #333;
    /* Dark text color */
  }

  .vc {
    /* Name.Variable.Class */
    color: #a00;
    /* Dark red for class variables */
  }

  .vg {
    /* Name.Variable.Global */
    color: #a00;
    /* Dark red for global variables */
  }

  .vi {
    /* Name.Variable.Instance */
    color: #a00;
    /* Dark red for instance variables */
  }

  .il {
    /* Literal.Number.Integer.Long */
    color: #690;
    /* Dark green for long integers */
  }
}

.gist {

  th,
  td {
    border-bottom: 0;
  }
}

2️⃣ 복사 버튼 색깔 바꾸기 _utilities.scss

1
2
3
4
5
pre {
  &.highlight .clipboard-copy-button {
    color: link-color;
  }
}

⚡️ 참고

코드 복사 버튼이 보여지게 하고 싶다면 _config.yml에서 enable_copy_code_button 옵션을 true로 설정

1
enable_copy_code_button  : true # false (default)

Leave a comment