buckram 1.7.3 → 1.8.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. package/.idea/buckram.iml +11 -0
  2. package/.idea/modules.xml +8 -0
  3. package/.idea/php.xml +19 -0
  4. package/.idea/vcs.xml +6 -0
  5. package/CHANGELOG.md +26 -0
  6. package/README.md +4 -4
  7. package/assets/styles/buckram.scss +1 -1
  8. package/assets/styles/components/_colors.scss +5 -5
  9. package/assets/styles/components/_utilities.scss +49 -125
  10. package/assets/styles/components/elements/_blockquotes.scss +3 -2
  11. package/assets/styles/components/elements/_body.scss +2 -2
  12. package/assets/styles/components/elements/_headings.scss +16 -15
  13. package/assets/styles/components/elements/_links.scss +3 -5
  14. package/assets/styles/components/elements/_lists.scss +22 -22
  15. package/assets/styles/components/elements/_miscellaneous.scss +7 -5
  16. package/assets/styles/components/elements/_paragraphs.scss +4 -20
  17. package/assets/styles/components/elements/_tables.scss +8 -5
  18. package/assets/styles/components/media/_audio.scss +1 -1
  19. package/assets/styles/components/media/_images.scss +5 -9
  20. package/assets/styles/components/media/_interactive-content.scss +2 -1
  21. package/assets/styles/components/media/_video.scss +1 -1
  22. package/assets/styles/components/pages/_back-matter.scss +1 -0
  23. package/assets/styles/components/pages/_chapters.scss +1 -0
  24. package/assets/styles/components/pages/_front-matter.scss +2 -0
  25. package/assets/styles/components/pages/_titles.scss +3 -1
  26. package/assets/styles/components/section-titles/_back-matter.scss +3 -1
  27. package/assets/styles/components/section-titles/_chapters.scss +8 -2
  28. package/assets/styles/components/section-titles/_front-matter.scss +5 -2
  29. package/assets/styles/components/section-titles/_generic.scss +3 -2
  30. package/assets/styles/components/section-titles/_parts.scss +2 -1
  31. package/assets/styles/components/specials/_columns.scss +4 -0
  32. package/assets/styles/components/specials/_contributors.scss +4 -3
  33. package/assets/styles/components/specials/_dropcaps.scss +5 -7
  34. package/assets/styles/components/specials/_floats.scss +2 -2
  35. package/assets/styles/components/specials/_footnotes.scss +9 -16
  36. package/assets/styles/components/specials/_glossaryterms.scss +2 -2
  37. package/assets/styles/components/specials/_miscellaneous.scss +4 -8
  38. package/assets/styles/components/specials/_pullquotes.scss +7 -2
  39. package/assets/styles/components/specials/_separators.scss +3 -2
  40. package/assets/styles/components/specials/_textboxes.scss +6 -8
  41. package/assets/styles/components/structure/_blank.scss +18 -18
  42. package/assets/styles/components/structure/_content-strings.scss +2 -2
  43. package/assets/styles/components/structure/_general.scss +2 -2
  44. package/assets/styles/components/structure/_mixins.scss +168 -136
  45. package/assets/styles/components/structure/_numbering.scss +2 -2
  46. package/assets/styles/components/structure/_recto-verso.scss +2 -2
  47. package/assets/styles/components/structure/_running-content.scss +5 -10
  48. package/assets/styles/components/toc/_generic.scss +124 -6
  49. package/assets/styles/variables/_colors.scss +65 -16
  50. package/assets/styles/variables/_elements.scss +20 -35
  51. package/assets/styles/variables/_media.scss +1 -1
  52. package/assets/styles/variables/_pages.scss +7 -7
  53. package/assets/styles/variables/_section-titles.scss +8 -8
  54. package/assets/styles/variables/_specials.scss +3 -2
  55. package/assets/styles/variables/_structure.scss +18 -13
  56. package/assets/styles/variables/_toc.scss +4 -4
  57. package/package.json +5 -4
  58. package/assets/styles/components/toc/_mobi.scss +0 -109
@@ -6,6 +6,7 @@
6
6
  @if $type != 'epub' {
7
7
  line-height: if-map-get($toc-base-line-height, $type);
8
8
  }
9
+
9
10
  list-style: none;
10
11
  margin: 0;
11
12
  padding: 0;
@@ -47,6 +48,7 @@
47
48
  @if $type == 'epub' {
48
49
  color: if-map-get($toc-front-matter-title-color, $type);
49
50
  }
51
+
50
52
  font-family: $toc-front-matter-title-font-family;
51
53
  font-size: if-map-get($toc-front-matter-title-font-size, $type);
52
54
  font-style: $toc-front-matter-title-font-style;
@@ -55,6 +57,7 @@
55
57
  @if $type != 'epub' {
56
58
  line-height: if-map-get($toc-front-matter-line-height, $type);
57
59
  }
60
+
58
61
  text-transform: $toc-front-matter-title-text-transform;
59
62
  }
60
63
 
@@ -62,6 +65,7 @@
62
65
  @if $type == 'epub' {
63
66
  color: if-map-get($toc-front-matter-subtitle-color, $type);
64
67
  }
68
+
65
69
  font-family: $toc-front-matter-subtitle-font-family;
66
70
  font-size: if-map-get($toc-front-matter-subtitle-font-size, $type);
67
71
  font-style: $toc-front-matter-subtitle-font-style;
@@ -73,6 +77,7 @@
73
77
  @if $type == 'epub' {
74
78
  color: if-map-get($toc-front-matter-author-color, $type);
75
79
  }
80
+
76
81
  font-family: $toc-front-matter-author-font-family;
77
82
  font-size: if-map-get($toc-front-matter-author-font-size, $type);
78
83
  font-style: $toc-front-matter-author-font-style;
@@ -84,6 +89,7 @@
84
89
  @if $type == 'epub' {
85
90
  color: if-map-get($toc-part-title-color, $type);
86
91
  }
92
+
87
93
  font-family: $toc-part-title-font-family;
88
94
  font-size: if-map-get($toc-part-title-font-size, $type);
89
95
  font-style: $toc-part-title-font-style;
@@ -92,6 +98,7 @@
92
98
  @if $type != 'epub' {
93
99
  line-height: if-map-get($toc-part-line-height, $type);
94
100
  }
101
+
95
102
  margin-top: if-map-get($toc-part-margin-top, $type);
96
103
  text-transform: $toc-part-title-text-transform;
97
104
  }
@@ -108,6 +115,7 @@
108
115
  @if $type == 'epub' {
109
116
  color: if-map-get($toc-chapter-title-color, $type);
110
117
  }
118
+
111
119
  font-family: $toc-chapter-title-font-family;
112
120
  font-size: if-map-get($toc-chapter-title-font-size, $type);
113
121
  font-style: $toc-chapter-title-font-style;
@@ -115,6 +123,7 @@
115
123
  @if $type != 'epub' {
116
124
  line-height: if-map-get($toc-chapter-line-height, $type);
117
125
  }
126
+
118
127
  text-transform: $toc-chapter-title-text-transform;
119
128
  }
120
129
 
@@ -122,6 +131,7 @@
122
131
  @if $type == 'epub' {
123
132
  color: if-map-get($toc-chapter-subtitle-color, $type);
124
133
  }
134
+
125
135
  font-family: $toc-chapter-subtitle-font-family;
126
136
  font-size: if-map-get($toc-chapter-subtitle-font-size, $type);
127
137
  font-style: $toc-chapter-subtitle-font-style;
@@ -134,6 +144,7 @@
134
144
  @if $type == 'epub' {
135
145
  color: if-map-get($toc-chapter-author-color, $type);
136
146
  }
147
+
137
148
  font-family: $toc-chapter-author-font-family;
138
149
  font-size: if-map-get($toc-chapter-author-font-size, $type);
139
150
  font-style: $toc-chapter-author-font-style;
@@ -146,6 +157,7 @@
146
157
  @if $type == 'epub' {
147
158
  color: if-map-get($toc-back-matter-title-color, $type);
148
159
  }
160
+
149
161
  font-family: $toc-back-matter-title-font-family;
150
162
  font-size: if-map-get($toc-back-matter-title-font-size, $type);
151
163
  font-style: $toc-back-matter-title-font-style;
@@ -154,6 +166,7 @@
154
166
  @if $type != 'epub' {
155
167
  line-height: if-map-get($toc-front-matter-line-height, $type);
156
168
  }
169
+
157
170
  text-transform: $toc-back-matter-title-text-transform;
158
171
  }
159
172
 
@@ -161,6 +174,7 @@
161
174
  @if $type == 'epub' {
162
175
  color: if-map-get($toc-back-matter-subtitle-color, $type);
163
176
  }
177
+
164
178
  font-family: $toc-back-matter-subtitle-font-family;
165
179
  font-size: if-map-get($toc-back-matter-subtitle-font-size, $type);
166
180
  font-style: $toc-back-matter-subtitle-font-style;
@@ -172,6 +186,7 @@
172
186
  @if $type == 'epub' {
173
187
  color: if-map-get($toc-back-matter-author-color, $type);
174
188
  }
189
+
175
190
  font-family: $toc-back-matter-author-font-family;
176
191
  font-size: if-map-get($toc-back-matter-author-font-size, $type);
177
192
  font-style: $toc-back-matter-author-font-style;
@@ -209,13 +224,13 @@
209
224
  @if $type != 'epub' {
210
225
  line-height: if-map-get($toc-front-matter-line-height, $type);
211
226
  }
227
+
212
228
  margin-top: if-map-get($toc-section-margin-top, $type);
213
229
  }
214
230
  }
215
231
  }
216
232
 
217
233
  @if $type == 'prince' {
218
-
219
234
  #toc {
220
235
  display: $toc-display;
221
236
  counter-reset: part;
@@ -308,7 +323,7 @@
308
323
  }
309
324
 
310
325
  .print #toc {
311
- a:after {
326
+ a::after {
312
327
  color: if-map-get($toc-page-number-color, $type);
313
328
  }
314
329
 
@@ -316,7 +331,7 @@
316
331
  color: if-map-get($toc-front-matter-title-color, $type);
317
332
  }
318
333
 
319
- .front-matter a:after {
334
+ .front-matter a::after {
320
335
  color: if-map-get($toc-front-matter-page-number-color, $type);
321
336
  }
322
337
 
@@ -332,7 +347,7 @@
332
347
  color: if-map-get($toc-part-title-color, $type);
333
348
  }
334
349
 
335
- .part a:before {
350
+ .part a::before {
336
351
  color: if-map-get($toc-part-number-color, $type);
337
352
  }
338
353
 
@@ -340,7 +355,7 @@
340
355
  color: if-map-get($toc-chapter-title-color, $type);
341
356
  }
342
357
 
343
- .chapter a:before {
358
+ .chapter a::before {
344
359
  color: if-map-get($toc-chapter-number-color, $type);
345
360
  }
346
361
 
@@ -368,5 +383,108 @@
368
383
  }
369
384
  }
370
385
 
371
- @import 'mobi';
386
+ @if $type == 'epub' {
387
+
388
+ @media amzn-kf8 {
389
+ #toc .toc-chapter-title {
390
+ /* CSS property in content is not supported. Table of contents cannot be clicked. */
391
+ position: static;
392
+ }
393
+ }
394
+
395
+ @media amzn-mobi {
396
+ #toc {
397
+ font-style: normal;
398
+ font-weight: normal;
399
+ border: 0;
400
+ text-align: left;
401
+ }
402
+
403
+ #toc h1 {
404
+ font-size: 1em;
405
+ font-style: normal;
406
+ font-weight: normal;
407
+ }
408
+
409
+ #toc .toc-chapter-title {
410
+ /* CSS property in content is not supported. Table of contents cannot be clicked. */
411
+ position: static;
412
+ }
413
+
414
+ span.chapter-author {
415
+ display: none;
416
+ }
417
+
418
+ span.chapter-subtitle {
419
+ display: none;
420
+ }
421
+
422
+ span.toc-chapter-title {
423
+ font-style: normal;
424
+ font-weight: normal;
425
+ font-size: 1em;
426
+ text-align: left;
427
+ }
428
+
429
+ li.front-matter {
430
+ font-style: normal;
431
+ font-weight: normal;
432
+ font-size: 0.9em;
433
+ }
434
+
435
+ li.part {
436
+ font-weight: bold;
437
+ font-size: 1.25em;
438
+ text-align: left;
439
+ margin-top: 1em;
440
+ }
441
+
442
+ li.chapter {
443
+ font-style: normal;
444
+ font-weight: normal;
445
+ font-size: 1em;
446
+ }
372
447
 
448
+ li.back-matter {
449
+ font-weight: bold;
450
+ font-size: 0.9em;
451
+ text-align: left;
452
+ margin-top: 1em;
453
+ }
454
+
455
+ #toc a {
456
+ font-style: normal;
457
+ font-weight: normal;
458
+ }
459
+
460
+ #toc ul .front-matter,
461
+ #toc ul .back-matter {
462
+ font-style: normal;
463
+ font-weight: normal;
464
+ font-size: 1em;
465
+ }
466
+
467
+ #toc .front-matter {
468
+ font-style: normal;
469
+ font-weight: normal;
470
+ font-size: 1em;
471
+ }
472
+
473
+ #toc .back-matter {
474
+ font-style: normal;
475
+ font-weight: normal;
476
+ font-size: 1em;
477
+ }
478
+
479
+ #toc .part {
480
+ font-weight: bold;
481
+ margin-top: 1em;
482
+ }
483
+
484
+ #toc li {
485
+ font-style: normal;
486
+ font-weight: normal;
487
+ font-size: 1em;
488
+ }
489
+ }
490
+ }
@@ -7,16 +7,16 @@ $color-1: (
7
7
  prince: initial,
8
8
  web: #373d3f
9
9
  ) !default;
10
- $color-2: $color-1 !default; //highlight color, for titles etc.
11
- $color-3: $color-1 !default; //second hightlight color, or black
12
- $color-4: #eee !default; //shaded
13
- $color-5: $color-4 !default; //2nd shaded
10
+ $color-2: $color-1 !default; // highlight color, for titles etc.
11
+ $color-3: $color-1 !default; // second hightlight color, or black
12
+ $color-4: #eee !default; // shaded
13
+ $color-5: $color-4 !default; // 2nd shaded
14
14
  $color-5: $color-1 !default; // TODO: Declared twice, is this a bug?!
15
15
  $color-6: $color-1 !default;
16
16
 
17
- //HTML ELEMENTS COLOR
17
+ // HTML ELEMENTS COLOR
18
18
 
19
- //A-LINK COLOR
19
+ // A-LINK COLOR
20
20
 
21
21
  /// Color for `<a>` elements.
22
22
  /// @type String | Map
@@ -30,137 +30,165 @@ $link-color: (
30
30
  /// @type String
31
31
  $link-color-print: initial !default;
32
32
 
33
- //BODY COLOR
33
+ // BODY COLOR
34
34
 
35
35
  /// Color for `<body>` elements.
36
36
  /// @type String
37
37
  $body-color: $color-1 !default;
38
38
 
39
- //BLOCKQUOTE COLOR
39
+ // BLOCKQUOTE COLOR
40
40
 
41
41
  /// Color for all `<blockquote>` elements.
42
42
  /// @type String
43
43
  $blockquote-color: $color-1 !default;
44
44
 
45
- //BODY HEADER COLORS
45
+ // BODY HEADER COLORS
46
46
 
47
47
  /// Color for `<h1>` elements.
48
48
  /// @type String
49
49
  $h1-color: $color-2 !default;
50
+
50
51
  /// Color for `<h2>` elements.
51
52
  /// @type String
52
53
  $h2-color: $color-2 !default;
54
+
53
55
  /// Color for `<h3>` elements.
54
56
  /// @type String
55
57
  $h3-color: $color-2 !default;
58
+
56
59
  /// Color for `<h4>` elements.
57
60
  /// @type String
58
61
  $h4-color: $color-3 !default;
62
+
59
63
  /// Color for `<h5>` elements.
60
64
  /// @type String
61
65
  $h5-color: $color-3 !default;
66
+
62
67
  /// Color for `<h6>` elements.
63
68
  /// @type String
64
69
  $h6-color: $color-3 !default;
65
70
 
66
- //TABLE COLORS
71
+ // TABLE COLORS
67
72
 
68
73
  /// Color for `<table>` elements.
69
74
  /// @type String
70
75
  $table-color: $color-1 !default;
76
+
71
77
  /// Color for `<p>` elements within `<table>` elements.
72
78
  /// @type String
73
79
  $table-para-color: $color-1 !default;
80
+
74
81
  /// Shade color for `<table>` elements.
75
82
  /// @type String
76
83
  $shade-color-1: $color-4 !default;
84
+
77
85
  /// Line color for `<table>` elements.
78
86
  /// @type String
79
87
  $line-color-1: #000 !default;
80
88
 
81
- //INDEX PARA COLOR
89
+ // INDEX PARA COLOR
82
90
 
83
91
  /// Color for `<p>` elements with the class `index`.
84
92
  /// @type String
85
93
  $index-para-color: $color-1 !default; // <------
86
94
 
87
- //SPECIAL ELEMENTS COLOR
95
+ // SPECIAL ELEMENTS COLOR
88
96
 
89
97
  /// Text color for image captions for `<p>` elements with class `wp-caption-text`
90
98
  /// @type String
91
99
  $image-caption-text-color: $color-3 !default;
100
+
92
101
  /// Color for elements with classes `first-character` and `firstcharacter`.
93
102
  /// @type String
94
103
  $first-character-color: $color-2 !default;
104
+
95
105
  /// Pullquote color for elements with class `pullquote`.
96
106
  /// @type String
97
107
  $pullquote-color: $color-2 !default;
108
+
98
109
  /// Sidebar color for `<div>` elements with class `.sidebar`.
99
110
  /// @type String
100
111
  $sidebar-color: $color-4 !default;
112
+
101
113
  /// Textbox color for `<div>` elements with class `.textbox`.
102
114
  /// @type String
103
115
  $textbox-background-color: initial !default;
116
+
104
117
  /// Shading color for `<div>` elements with class `.sidebar.shaded`.
105
118
  /// @type String
106
119
  $shaded-color: $color-4 !default;
120
+
107
121
  /// Textbox shaded Background color on elements with a class of `textbox` and a class of `shaded`.
108
122
  /// @type String
109
123
  $textbox-shaded-background-color: $shaded-color !default;
124
+
110
125
  /// Textbox border color for `<div>` elements with class `.sidebar`.
111
126
  /// @type String
112
127
  $textbox-border-color: $color-1 !default;
128
+
113
129
  /// Top border color on break symbols on elements with a class of `break-symbols` that are children of `<hr>` elements.
114
130
  /// @type String | Map
115
131
  /// @since 1.2.0
116
132
  $hr-break-symbols-border-top-color: $color-3 !default;
133
+
117
134
  /// Color for description term on elements `<dt>`.
118
135
  /// @type String
119
136
  /// @since 1.4.0
120
137
  $dt-color: $color-3 !default;
138
+
121
139
  /// Color for footnotes on elements with class of`.footnote`.
122
140
  /// @type String
123
141
  /// @since 1.4.0
124
142
  $footnote-color: $color-1 !default;
125
143
 
126
- //TITLE PAGE(S) COLOR
144
+ // TITLE PAGE(S) COLOR
127
145
 
128
146
  /// Title color for Half Title pages. Targets elements `<h1>` with a class of `title` with a parent of ID `half-title-page`
129
147
  /// @type String
130
148
  $half-title-title-color: $color-2 !default;
149
+
131
150
  /// Title color for Title page for elements with class `title` of parent element with ID `title-page`
132
151
  /// @type String
133
152
  $title-page-title-color: $color-2 !default;
153
+
134
154
  /// Subtitle color for Title page for elements with class `subtitle` of parent element with ID `title-page`
135
155
  /// @type String | Map
136
156
  $title-title-decoration-color: $title-page-title-color !default;
157
+
137
158
  /// Subtitle color for Title page for elements with class `subtitle` of parent element with ID `title-page`
138
159
  /// @type String
139
160
  $title-page-subtitle-color: $color-3 !default;
161
+
140
162
  /// Author color for Title page for elements with class `author` of parent element with ID `title-page`
141
163
  /// @type String
142
164
  $title-page-author-color: $color-2 !default;
165
+
143
166
  /// Publisher color for Title page for elements with class `publisher` of parent element with ID `title-page`
144
167
  /// @type String
145
168
  $title-page-publisher-color: $color-3 !default;
169
+
146
170
  /// Publisher city color for Title page for elements with class `publisher-city` of parent element with ID `title-page`
147
171
  /// @type String
148
172
  $title-page-publisher-city-color: $color-3 !default;
149
173
 
150
- //SECTION OPENING COLOR
174
+ // SECTION OPENING COLOR
151
175
  /// Front matter title color for elements `<h1>` with a class `front-matter-title`.
152
176
  /// @type String
153
177
  $front-matter-title-color: $color-2 !default;
178
+
154
179
  /// Front Matter Title decoration color.
155
180
  /// @type String | Map
156
181
  /// @since 1.1.0
157
182
  $front-matter-title-decoration-color: $front-matter-title-color !default;
183
+
158
184
  /// Copyright disclaimer color for elements `<p>` with an ID of `copyright-page`.
159
185
  /// @type String
160
186
  $copyright-para-color: $color-1 !default;
187
+
161
188
  /// Dedication color for elements `<p>` with a class of `dedication`.
162
189
  /// @type String
163
190
  $dedication-para-color: $color-3 !default;
191
+
164
192
  /// Epigraph color for elements `<p>` with a class of `epigraph`.
165
193
  /// @type String
166
194
  $epigraph-para-color: $color-3 !default;
@@ -168,9 +196,11 @@ $epigraph-para-color: $color-3 !default;
168
196
  /// Part number color for elements `<h3>` with a class of `part-number`.
169
197
  /// @type String
170
198
  $part-number-color: $color-3 !default;
199
+
171
200
  /// Part title color for elements `<h2>` with a class of `part-title`.
172
201
  /// @type String
173
202
  $part-title-color: $color-2 !default;
203
+
174
204
  /// Part Title decoration color.
175
205
  /// @type String | Map
176
206
  /// @since 1.1.0
@@ -192,67 +222,84 @@ $chapter-title-decoration-color: $chapter-title-color !default;
192
222
  /// Chapter subtitle color for elements `<h2>` with a class of `chapter-subtitle`.
193
223
  /// @type String
194
224
  $chapter-subtitle-color: $color-3 !default;
225
+
195
226
  /// Chapter author color for elements `<h2>` with a class of `chapter-author`.
196
227
  /// @type String
197
228
  $chapter-author-color: $color-3 !default;
229
+
198
230
  /// Chapter aphorism color for elements with a class of `aphorism`.
199
231
  /// @type String
200
232
  $chapter-aphorism-color: $color-3 !default;
233
+
201
234
  /// Back matter title color for elements `<h1>` with a class of `back-matter-title`.
202
235
  /// @type String
203
236
  $back-matter-title-color: $color-2 !default;
237
+
204
238
  /// Back Matter Title decoration color.
205
239
  /// @type String | Map
206
240
  /// @since 1.1.0
207
241
  $back-matter-title-decoration-color: $back-matter-title-color !default;
208
242
 
209
- //RUNNING HEAD/FEET COLOR
243
+ // RUNNING HEAD/FEET COLOR
210
244
 
211
245
  /// Running head color.
212
246
  /// @type String | Map
213
247
  $runninghead-color: $color-3 !default;
248
+
214
249
  /// Running foot color.
215
250
  /// @type String | Map
216
251
  $runningfoot-color: $color-3 !default;
252
+
217
253
  /// Page number color
218
254
  /// @type String | Map
219
255
  $page-number-color: $color-3 !default;
220
256
 
221
- //TOC COLOR
257
+ // TOC COLOR
222
258
  /// Defines the table of contents title color.
223
259
  /// @type String | Map
224
260
  /// @since 1.0.0
225
261
  $toc-title-color: $color-1 !default;
262
+
226
263
  /// Table of contents front matter title color.
227
264
  /// @type String | Map
228
265
  $toc-front-matter-title-color: $color-1 !default;
266
+
229
267
  /// Table of contents front matter subtitle color.
230
268
  /// @type String | Map
231
269
  $toc-front-matter-subtitle-color: $color-1 !default;
270
+
232
271
  /// Table of contents front matter author color.
233
272
  /// @type String | Map
234
273
  $toc-front-matter-author-color: $color-1 !default;
274
+
235
275
  /// Table of contents part number color.
236
276
  /// @type String | Map
237
277
  $toc-part-number-color: $color-3 !default;
278
+
238
279
  /// Table of contents part title color.
239
280
  /// @type String | Map
240
281
  $toc-part-title-color: $color-3 !default;
282
+
241
283
  /// Table of contents Chapter number color.
242
284
  /// @type String | Map
243
285
  $toc-chapter-number-color: $color-1 !default;
286
+
244
287
  /// Table of Contents Chapter title color.
245
288
  /// @type String | Map
246
289
  $toc-chapter-title-color: $color-1 !default;
290
+
247
291
  /// Table of contents Chapter subtitle color.
248
292
  /// @type String | Map
249
293
  $toc-chapter-subtitle-color: $color-1 !default;
294
+
250
295
  /// Table of contents Chapter author color.
251
296
  /// @type String | Map
252
297
  $toc-chapter-author-color: $color-1 !default;
298
+
253
299
  /// Table of contents page number color.
254
300
  /// @type String | Map
255
301
  $toc-page-number-color: $color-1 !default;
302
+
256
303
  /// Table of contents front matter page number color.
257
304
  /// @type String | Map
258
305
  $toc-front-matter-page-number-color: $color-1 !default;
@@ -261,10 +308,12 @@ $toc-front-matter-page-number-color: $color-1 !default;
261
308
  /// @type String | Map
262
309
  /// @since 1.0.0
263
310
  $toc-back-matter-title-color: $toc-front-matter-title-color !default;
311
+
264
312
  /// Table of contents back matter subtitle color.
265
313
  /// @type String | Map
266
314
  /// @since 1.0.0
267
315
  $toc-back-matter-subtitle-color: $toc-front-matter-subtitle-color !default;
316
+
268
317
  /// Table of contents back matter author color.
269
318
  /// @type String | Map
270
319
  /// @since 1.0.0