rawfeed 0.0.1 → 0.1.1

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 (133) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE.txt +21 -0
  3. data/README.md +153 -1
  4. data/_data/resume.yml +184 -0
  5. data/_includes/alert +3 -0
  6. data/_includes/chart +34 -0
  7. data/_includes/details +57 -0
  8. data/_includes/enddetails +2 -0
  9. data/_includes/endtabs +2 -0
  10. data/_includes/image +61 -0
  11. data/_includes/layout/blog_search.html +18 -0
  12. data/_includes/layout/data.liquid +8 -0
  13. data/_includes/layout/disqus.html +30 -0
  14. data/_includes/layout/footer.html +34 -0
  15. data/_includes/layout/giscus.html +21 -0
  16. data/_includes/layout/google_analytics.html +11 -0
  17. data/_includes/layout/head.html +59 -0
  18. data/_includes/layout/header.html +143 -0
  19. data/_includes/layout/maintenance.html +30 -0
  20. data/_includes/layout/paginator.html +35 -0
  21. data/_includes/socials +22 -0
  22. data/_includes/tabs +94 -0
  23. data/_includes/toc +160 -0
  24. data/_includes/video +10 -0
  25. data/_layouts/blog.html +46 -0
  26. data/_layouts/contact.html +285 -0
  27. data/_layouts/default.html +351 -0
  28. data/_layouts/error.html +15 -0
  29. data/_layouts/home.html +58 -0
  30. data/_layouts/page.html +9 -0
  31. data/_layouts/post.html +103 -0
  32. data/_layouts/resume.html +239 -0
  33. data/_layouts/tag.html +22 -0
  34. data/_layouts/tag_posts.html +27 -0
  35. data/_sass/base/_index.scss +63 -0
  36. data/_sass/base/_reset.scss +10 -0
  37. data/_sass/base/_typography.scss +0 -0
  38. data/_sass/components/_badges.scss +24 -0
  39. data/_sass/components/_button.scss +17 -0
  40. data/_sass/components/_forms.scss +42 -0
  41. data/_sass/components/_gifs.scss +5 -0
  42. data/_sass/components/_index.scss +5 -0
  43. data/_sass/components/_markdown.scss +454 -0
  44. data/_sass/includes/_footer.scss +45 -0
  45. data/_sass/includes/_header.scss +240 -0
  46. data/_sass/includes/_highlight.scss +87 -0
  47. data/_sass/includes/_index.scss +9 -0
  48. data/_sass/includes/_maintenance.scss +16 -0
  49. data/_sass/includes/_paginator.scss +22 -0
  50. data/_sass/includes/_rouge-dark.scss +81 -0
  51. data/_sass/includes/_rouge-light.scss +121 -0
  52. data/_sass/includes/_terminal.scss +208 -0
  53. data/_sass/layouts/_blog.scss +96 -0
  54. data/_sass/layouts/_contact.scss +55 -0
  55. data/_sass/layouts/_default.scss +14 -0
  56. data/_sass/layouts/_error.scss +18 -0
  57. data/_sass/layouts/_home.scss +19 -0
  58. data/_sass/layouts/_index.scss +10 -0
  59. data/_sass/layouts/_page.scss +5 -0
  60. data/_sass/layouts/_post.scss +109 -0
  61. data/_sass/layouts/_resume.scss +330 -0
  62. data/_sass/layouts/_tag-posts.scss +48 -0
  63. data/_sass/layouts/_tag.scss +22 -0
  64. data/_sass/main.scss +128 -0
  65. data/_sass/theme/_dark.scss +79 -0
  66. data/_sass/theme/_index.scss +13 -0
  67. data/_sass/theme/_light.scss +56 -0
  68. data/assets/css/style.scss +5 -0
  69. data/assets/images/avatar_back.png +0 -0
  70. data/assets/images/avatar_dark.png +0 -0
  71. data/assets/images/avatar_light.png +0 -0
  72. data/assets/images/favicon.png +0 -0
  73. data/assets/js/avatar.js +50 -0
  74. data/assets/js/default.js +148 -0
  75. data/assets/js/terminal.js +18 -0
  76. data/assets/js/toc.js +22 -0
  77. data/assets/json/blog_search.json +16 -0
  78. data/assets/vendor/bootstrap/css/bootstrap-grid.css +4124 -0
  79. data/assets/vendor/bootstrap/css/bootstrap-grid.css.map +1 -0
  80. data/assets/vendor/bootstrap/css/bootstrap-grid.min.css +7 -0
  81. data/assets/vendor/bootstrap/css/bootstrap-grid.min.css.map +1 -0
  82. data/assets/vendor/bootstrap/css/bootstrap-grid.rtl.css +4123 -0
  83. data/assets/vendor/bootstrap/css/bootstrap-grid.rtl.css.map +1 -0
  84. data/assets/vendor/bootstrap/css/bootstrap-grid.rtl.min.css +7 -0
  85. data/assets/vendor/bootstrap/css/bootstrap-grid.rtl.min.css.map +1 -0
  86. data/assets/vendor/bootstrap/css/bootstrap-reboot.css +488 -0
  87. data/assets/vendor/bootstrap/css/bootstrap-reboot.css.map +1 -0
  88. data/assets/vendor/bootstrap/css/bootstrap-reboot.min.css +7 -0
  89. data/assets/vendor/bootstrap/css/bootstrap-reboot.min.css.map +1 -0
  90. data/assets/vendor/bootstrap/css/bootstrap-reboot.rtl.css +485 -0
  91. data/assets/vendor/bootstrap/css/bootstrap-reboot.rtl.css.map +1 -0
  92. data/assets/vendor/bootstrap/css/bootstrap-reboot.rtl.min.css +7 -0
  93. data/assets/vendor/bootstrap/css/bootstrap-reboot.rtl.min.css.map +1 -0
  94. data/assets/vendor/bootstrap/css/bootstrap-utilities.css +4266 -0
  95. data/assets/vendor/bootstrap/css/bootstrap-utilities.css.map +1 -0
  96. data/assets/vendor/bootstrap/css/bootstrap-utilities.min.css +7 -0
  97. data/assets/vendor/bootstrap/css/bootstrap-utilities.min.css.map +1 -0
  98. data/assets/vendor/bootstrap/css/bootstrap-utilities.rtl.css +4257 -0
  99. data/assets/vendor/bootstrap/css/bootstrap-utilities.rtl.css.map +1 -0
  100. data/assets/vendor/bootstrap/css/bootstrap-utilities.rtl.min.css +7 -0
  101. data/assets/vendor/bootstrap/css/bootstrap-utilities.rtl.min.css.map +1 -0
  102. data/assets/vendor/bootstrap/css/bootstrap.css +10878 -0
  103. data/assets/vendor/bootstrap/css/bootstrap.css.map +1 -0
  104. data/assets/vendor/bootstrap/css/bootstrap.min.css +7 -0
  105. data/assets/vendor/bootstrap/css/bootstrap.min.css.map +1 -0
  106. data/assets/vendor/bootstrap/css/bootstrap.rtl.css +10842 -0
  107. data/assets/vendor/bootstrap/css/bootstrap.rtl.css.map +1 -0
  108. data/assets/vendor/bootstrap/css/bootstrap.rtl.min.css +7 -0
  109. data/assets/vendor/bootstrap/css/bootstrap.rtl.min.css.map +1 -0
  110. data/assets/vendor/bootstrap/js/bootstrap.bundle.js +7075 -0
  111. data/assets/vendor/bootstrap/js/bootstrap.bundle.js.map +1 -0
  112. data/assets/vendor/bootstrap/js/bootstrap.bundle.min.js +7 -0
  113. data/assets/vendor/bootstrap/js/bootstrap.bundle.min.js.map +1 -0
  114. data/assets/vendor/bootstrap/js/bootstrap.esm.js +5202 -0
  115. data/assets/vendor/bootstrap/js/bootstrap.esm.js.map +1 -0
  116. data/assets/vendor/bootstrap/js/bootstrap.esm.min.js +7 -0
  117. data/assets/vendor/bootstrap/js/bootstrap.esm.min.js.map +1 -0
  118. data/assets/vendor/bootstrap/js/bootstrap.js +5249 -0
  119. data/assets/vendor/bootstrap/js/bootstrap.js.map +1 -0
  120. data/assets/vendor/bootstrap/js/bootstrap.min.js +7 -0
  121. data/assets/vendor/bootstrap/js/bootstrap.min.js.map +1 -0
  122. data/assets/vendor/simple-jekyll-search.js +433 -0
  123. data/assets/vendor/simple-jekyll-search.min.js +6 -0
  124. data/lib/rawfeed/draft.rb +31 -0
  125. data/lib/rawfeed/installer.rb +37 -0
  126. data/lib/rawfeed/layout.rb +138 -0
  127. data/lib/rawfeed/page.rb +33 -0
  128. data/lib/rawfeed/post.rb +60 -0
  129. data/lib/rawfeed/resume.rb +59 -0
  130. data/lib/rawfeed/utils.rb +74 -0
  131. data/lib/rawfeed/version.rb +1 -1
  132. data/lib/rawfeed.rb +5 -7
  133. metadata +144 -2
@@ -0,0 +1,18 @@
1
+ @use "../components/index";
2
+
3
+ .error {
4
+ &-image {
5
+ @extend %gif_border;
6
+ margin-bottom: 50px;
7
+ }
8
+
9
+ &-title {
10
+ color: red;
11
+ font-weight: bold;
12
+ }
13
+
14
+ &-description {
15
+ font-size: 1.3rem;
16
+ opacity: .6;
17
+ }
18
+ }
@@ -0,0 +1,19 @@
1
+ .home {
2
+ &-terminal {
3
+ display: block;
4
+ }
5
+
6
+ &-text {
7
+ display: none;
8
+ }
9
+
10
+ @media (max-width: 767px) {
11
+ &-terminal {
12
+ display: none !important;
13
+ }
14
+
15
+ &-text {
16
+ display: block !important;
17
+ }
18
+ }
19
+ }
@@ -0,0 +1,10 @@
1
+ @use "default";
2
+ @use "home";
3
+ @use "blog";
4
+ @use "page";
5
+ @use "post";
6
+ @use "tag";
7
+ @use "tag-posts";
8
+ @use "contact";
9
+ @use "error";
10
+ @use "resume";
@@ -0,0 +1,5 @@
1
+ @use "../components/index";
2
+
3
+ .page {
4
+ @extend %markdown;
5
+ }
@@ -0,0 +1,109 @@
1
+ @use "../components/index";
2
+
3
+ .post {
4
+ // TODO: version: 0.2.0 - Create background light
5
+ // box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
6
+ // border: 1px solid #ddd;
7
+ // background-color: white;
8
+ // padding: 10px 30px;
9
+
10
+ @extend %markdown;
11
+ margin-bottom: 50px;
12
+
13
+ li {
14
+ list-style: disc;
15
+ }
16
+
17
+ &-title {
18
+ font-size: 1.3rem !important;
19
+ font-weight: bold;
20
+ margin-bottom: 40px !important;
21
+ }
22
+
23
+ &-meta,
24
+ &-modified {
25
+ margin-bottom: 12px;
26
+ color: var(--text-muted-color);
27
+ }
28
+
29
+ &-modified {
30
+ margin-top: 30px;
31
+ }
32
+
33
+ .dt-published,
34
+ .dt-modified {
35
+ font-weight: normal !important;
36
+ font-family: "SUSE Mono", sans-serif;
37
+ color: var(--text-muted-color);
38
+ }
39
+
40
+ &-content {
41
+ p::first-letter {
42
+ text-transform: uppercase;
43
+ }
44
+ }
45
+
46
+ .related-posts {
47
+ margin-bottom: 80px;
48
+
49
+ &-title {
50
+ font-size: 1.05rem;
51
+ font-weight: bold;
52
+ margin: 35px 0px 10px 0px;
53
+ }
54
+
55
+ &-list {
56
+ &__item {
57
+ list-style: none;
58
+ padding: 0;
59
+ margin: 0;
60
+
61
+ .draft-badge {
62
+ @extend %draft-badge;
63
+ }
64
+ }
65
+
66
+ &__meta {
67
+ display: inline-block;
68
+ min-width: 100px;
69
+ font-family: "SUSE Mono", sans-serif;
70
+ font-optical-sizing: auto;
71
+ font-style: normal;
72
+ line-height: 1rem;
73
+ color: var(--text-muted-color);
74
+ }
75
+
76
+ &__link {
77
+ font-weight: bold;
78
+ text-decoration: underline;
79
+ }
80
+ }
81
+ }
82
+
83
+ /* reset table values in <pre> */
84
+ pre {
85
+ code {
86
+
87
+ table,
88
+ tbody {
89
+ all: unset !important;
90
+ }
91
+
92
+ table {
93
+ tbody {
94
+
95
+ td,
96
+ tr {
97
+ border: none !important;
98
+ background-color: transparent !important;
99
+ }
100
+ }
101
+ }
102
+ }
103
+ }
104
+
105
+ &-end {
106
+ margin: 40px 0px;
107
+ font-size: 1.2rem;
108
+ }
109
+ }
@@ -0,0 +1,330 @@
1
+ @use "../components/index";
2
+
3
+ // mode print
4
+ @media print {
5
+ @page {
6
+ size: A4 portrait;
7
+ margin: 1.5cm;
8
+ }
9
+
10
+ #btn-print,
11
+ .resume-header__btn-print,
12
+ button {
13
+ display: none !important;
14
+ }
15
+
16
+ body,
17
+ .resume,
18
+ .container-fluid {
19
+ background: #fff !important;
20
+ box-shadow: none !important;
21
+ border: none !important;
22
+ }
23
+
24
+ body * {
25
+ visibility: hidden;
26
+ }
27
+
28
+ #print-this,
29
+ #print-this * {
30
+ visibility: visible;
31
+ }
32
+
33
+ #print-this {
34
+ position: absolute;
35
+ left: 0;
36
+ top: 0;
37
+ width: 100%;
38
+ margin: 0 auto;
39
+ }
40
+
41
+ .resume {
42
+ font-size: 11pt;
43
+ line-height: 1.5;
44
+ color: #000;
45
+
46
+ a {
47
+ small {
48
+ display: block !important;
49
+ }
50
+ }
51
+
52
+ .section {
53
+ page-break-inside: avoid;
54
+
55
+ &-title {
56
+ font-size: 12pt;
57
+ font-weight: 700;
58
+ }
59
+
60
+ &-item {
61
+ font-size: 10.5pt;
62
+ margin-bottom: 0.4em;
63
+ page-break-inside: avoid;
64
+
65
+ a {
66
+ color: black;
67
+ text-decoration: none;
68
+ font-weight: normal;
69
+ }
70
+ }
71
+ }
72
+
73
+ &-content {
74
+
75
+ .title {
76
+ a {
77
+ color: black;
78
+ font-weight: bold;
79
+ text-decoration: none;
80
+ }
81
+ }
82
+
83
+ // TWO-COLUMN LAYOUT
84
+ &__sidebar {
85
+ display: inline-block;
86
+ vertical-align: top;
87
+ width: 35%;
88
+ padding-right: 1cm;
89
+ box-sizing: border-box;
90
+ // border-right: 1px solid #ddd;
91
+ }
92
+
93
+ &__body {
94
+ display: inline-block;
95
+ vertical-align: top;
96
+ width: 65%;
97
+ padding-left: 1cm;
98
+ box-sizing: border-box;
99
+ }
100
+
101
+ &__name {
102
+ font-size: 20pt;
103
+ font-weight: bold;
104
+ }
105
+ }
106
+ }
107
+ }
108
+
109
+ // page resume
110
+ .resume {
111
+ font-family: "Helvetica", Arial, sans-serif !important;
112
+ color: var(--resume-content-text-color);
113
+ background-color: var(--resume-bg-color);
114
+ padding: 20px;
115
+ max-width: 900px;
116
+ margin: 0 auto;
117
+ line-height: 1.5;
118
+ font-size: 11pt;
119
+ box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
120
+ border: 1px solid var(--resume-border-color);
121
+ margin-bottom: 50px;
122
+
123
+ .role-company {
124
+
125
+ .role,
126
+ .company {
127
+ font-weight: 600;
128
+ }
129
+
130
+ .description {
131
+ font-style: italic;
132
+ font-size: 12px;
133
+ margin-left: 12px;
134
+ }
135
+ }
136
+
137
+ .details {
138
+ margin-top: 15px;
139
+ margin-left: 12px;
140
+
141
+ ul {
142
+ margin: 0 !important;
143
+ padding: 0 !important;
144
+ }
145
+
146
+ li {
147
+ margin-bottom: 10px;
148
+ }
149
+ }
150
+
151
+ .section-title {
152
+ color: var(--resume-title-text-color);
153
+ font-weight: 700;
154
+ margin: 0 !important;
155
+ font-size: 12pt !important;
156
+ text-transform: uppercase;
157
+ // border-bottom: 1px solid #ccc !important;
158
+ text-decoration: underline;
159
+ margin-bottom: 12px !important;
160
+ padding-bottom: 0.2em;
161
+ }
162
+
163
+ .section-item {
164
+ font-size: 10.5pt;
165
+ margin-bottom: 0.3em;
166
+
167
+ &__title {
168
+ font-weight: 600;
169
+ }
170
+ }
171
+
172
+ .time {
173
+ font-size: 9.5pt;
174
+ color: var(--resume-text-muted-color);
175
+ }
176
+
177
+ &-header {
178
+ margin-bottom: 1rem;
179
+
180
+ &__btn-print {
181
+ @extend %button;
182
+ width: 100px;
183
+ min-width: 80px;
184
+ margin-right: 15px;
185
+ }
186
+ }
187
+
188
+ &-content {
189
+
190
+ &__name {
191
+ font-size: 20pt !important;
192
+ font-weight: 700 !important;
193
+ margin-bottom: 1em !important;
194
+ }
195
+
196
+ &__sidebar {
197
+ .photo {
198
+ width: 110px;
199
+ height: 140px;
200
+ border-radius: .5rem;
201
+ margin-bottom: 1em;
202
+ // border: 1px solid black;
203
+ // float: right;
204
+ }
205
+
206
+ .section {
207
+ margin-bottom: 1.5em;
208
+
209
+ &-title {
210
+ width: 180px;
211
+ }
212
+ }
213
+
214
+
215
+ .personal_details {
216
+ .section-item__title {
217
+ font-weight: 600;
218
+ }
219
+ }
220
+
221
+ .skills {
222
+ .section-item {
223
+ .group {
224
+ font-weight: 600;
225
+ }
226
+
227
+ .tools {
228
+ margin-left: 12px;
229
+ display: flex;
230
+ flex-wrap: wrap;
231
+ max-width: 250px;
232
+ gap: 4px;
233
+
234
+ .tool {
235
+ white-space: nowrap;
236
+ }
237
+ }
238
+ }
239
+ }
240
+ }
241
+
242
+ &__body {
243
+ .section {
244
+
245
+ &-item {
246
+ margin-bottom: 12px;
247
+ }
248
+ }
249
+
250
+ .sumary {
251
+ text-align: justify !important;
252
+
253
+ }
254
+
255
+ .publications {
256
+ .section-item {
257
+ .row {
258
+ p {
259
+ margin: 0 !important;
260
+ }
261
+ }
262
+
263
+ .authors {
264
+ margin-left: 12px;
265
+ }
266
+ }
267
+
268
+ .conference {
269
+ font-size: 9.5pt;
270
+ margin-left: 12px;
271
+ color: var(--resume-text-muted-color);
272
+ }
273
+ }
274
+
275
+ .projects {
276
+ margin-top: 12px;
277
+
278
+ .section-item {
279
+ margin-bottom: 0 !important;
280
+ }
281
+
282
+ .details {
283
+ margin-top: 8px;
284
+ }
285
+
286
+ .row {
287
+ p {
288
+ margin: 0 !important;
289
+ }
290
+ }
291
+ }
292
+
293
+ .volunteering {
294
+ margin-top: 12px;
295
+
296
+ .details {
297
+ margin-top: 12px;
298
+ }
299
+ }
300
+ }
301
+
302
+ a {
303
+ small {
304
+ font-size: 8pt;
305
+ display: block;
306
+ color: var(--resume-text-muted-color);
307
+ text-decoration: none !important;
308
+ font-weight: normal;
309
+ margin-left: 15px;
310
+ margin-top: -2px;
311
+ display: none;
312
+ }
313
+ }
314
+
315
+ .section-item {
316
+ .title {
317
+ p {
318
+ span {
319
+ font-weight: 600 !important;
320
+ }
321
+ }
322
+ }
323
+ }
324
+ }
325
+
326
+ .marker {
327
+ font-size: 1.3rem !important;
328
+ font-weight: bold;
329
+ }
330
+ }
@@ -0,0 +1,48 @@
1
+ @use "../components/index";
2
+
3
+ .tag-posts {
4
+ margin-top: -.1rem !important;
5
+
6
+ &-title {
7
+ font-size: 1.05rem !important;
8
+ font-weight: bold;
9
+ font-style: italic;
10
+ margin: 0px 0px 10px 0px !important;
11
+
12
+ span {
13
+ font-style: normal !important;
14
+ }
15
+ }
16
+
17
+ &-list {
18
+ list-style: none !important;
19
+ padding: 0 !important;
20
+ margin: 0 !important;
21
+
22
+ &__item {
23
+ .draft-badge {
24
+ @extend %draft-badge;
25
+ }
26
+ }
27
+
28
+ li {
29
+ margin: 5px 0px;
30
+ }
31
+
32
+ &__meta {
33
+ display: inline-block;
34
+ min-width: 100px;
35
+ font-family: "SUSE Mono", sans-serif;
36
+ font-optical-sizing: auto;
37
+ font-style: normal;
38
+ line-height: 1rem;
39
+ color: var(--text-muted-color);
40
+ }
41
+
42
+ &__link {
43
+ text-transform: none !important;
44
+ font-weight: bold;
45
+ text-decoration: underline;
46
+ }
47
+ }
48
+ }
@@ -0,0 +1,22 @@
1
+ @use "../components/index";
2
+
3
+ .tag {
4
+ // box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
5
+ // border: 1px solid #ddd;
6
+ // background-color: white;
7
+ // padding: 20px;
8
+ @extend %markdown;
9
+
10
+ &-title {
11
+ font-size: 1.05rem !important;
12
+ font-weight: bold;
13
+ margin: 0px 0px 10px 0px !important;
14
+ }
15
+
16
+ &-list {
17
+ &__item {
18
+ display: inline-block;
19
+ margin-bottom: 12px;
20
+ }
21
+ }
22
+ }
data/_sass/main.scss ADDED
@@ -0,0 +1,128 @@
1
+ /* by: William C. Canin */
2
+
3
+ @use "theme" as theme;
4
+ @use "base";
5
+ @use "components";
6
+ @use "layouts";
7
+ @use "includes";
8
+
9
+ /* TODO: version 0.2.0:
10
+ 1 - create other dark and light themes for compilation, and have the option in
11
+ "_config.yml" for example:
12
+ layout:
13
+ # Available dark themes: default | hacking | grovbox
14
+ # Available light themes: default | cloud | grovbox
15
+ theme:
16
+ light: "cloud"
17
+ dark: "hacking"
18
+ */
19
+ :root[data-theme="light"] {
20
+ --bg-color: #{theme.theme-color(bg, light)};
21
+ --text-color: #{theme.theme-color(text, light)};
22
+ --text-muted-color: #{theme.theme-color(text-muted, light)};
23
+ --primary-color: #{theme.theme-color(primary, light)};
24
+ --shadow-color: #{theme.theme-color(shadow-color, light)};
25
+ --code-block-header-color: #{theme.theme-color(code-block-header-color, light)};
26
+ --code-color: #{theme.theme-color(code-color, light)};
27
+ --border-color: #{theme.theme-color(border-color, light)};
28
+ --scrollbar-color: #{theme.theme-color(scrollbar-color, light)};
29
+ --blockquote-bg-color: #{theme.theme-color(blockquote-bg-color, light)};
30
+ --footer-border-color: #{theme.theme-color(footer-border-color, light)};
31
+ --footer-bg-color: #{theme.theme-color(footer-bg-color, light)};
32
+ --terminal-shadow: #{theme.theme-color(terminal-shadow, light)};
33
+ --sumary-bg-color: #{theme.theme-color(sumary-bg-color, light)};
34
+ --checkbox-border-color: #{theme.theme-color(checkbox-border-color, light)};
35
+ --checkbox-border-color-after: #{theme.theme-color(checkbox-border-color-after, light)};
36
+ --table-border-color: #{theme.theme-color(table-border-color, light)};
37
+ --table-color: #{theme.theme-color(table-color, light)};
38
+ --table-tr-bg-color: #{theme.theme-color(table-tr-bg-color, light)};
39
+ --table-tr-border-color: #{theme.theme-color(table-tr-border-color, light)};
40
+ --table-td-border-color: #{theme.theme-color(table-td-border-color, light)};
41
+ --table-tr-odd-bg-color: #{theme.theme-color(table-tr-odd-bg-color, light)};
42
+ --table-tr-even-bg-color: #{theme.theme-color(table-tr-even-bg-color, light)};
43
+ --terminal-color: #{theme.theme-color(terminal-color, light)};
44
+ --terminal-bg-color: #{theme.theme-color(terminal-bg-color, light)};
45
+ --terminal-border-color: #{theme.theme-color(terminal-border-color, light)};
46
+ --terminal-btn-close-bg-color: #{theme.theme-color(terminal-btn-close-bg-color, light)};
47
+ --terminal-btn-min-bg-color: #{theme.theme-color(terminal-btn-min-bg-color, light)};
48
+ --terminal-btn-max-bg-color: #{theme.theme-color(terminal-btn-max-bg-color, light)};
49
+ --terminal-title-color: #{theme.theme-color(terminal-title-color, light)};
50
+ --terminal-screen-text-shadow: #{theme.theme-color(terminal-screen-text-shadow, light)};
51
+ --terminal-screen-after-bg-color: #{theme.theme-color(terminal-screen-after-bg-color, light)};
52
+ --terminal-header-border-bottom-color: #{theme.theme-color(terminal-header-border-bottom-color, light)};
53
+ --terminal-prompt-text-color: #{theme.theme-color(terminal-prompt-text-color, light)};
54
+ --terminal-screen-text-transform: #{theme.theme-color(terminal-screen-text-transform, light)};
55
+ --terminal-cursor-color: #{theme.theme-color(terminal-cursor-color, light)};
56
+ --terminal-screen-link-color: #{theme.theme-color(terminal-screen-link-color, light)};
57
+ --details-bg-color: #{theme.theme-color(details-bg-color, light)};
58
+ --video-border-color: #{theme.theme-color(video-border-color, light)};
59
+ --chart-bg-color: #{theme.theme-color(chart-bg-color, light)};
60
+ --chart-box-shadow-color: #{theme.theme-color(chart-box-shadow-color, light)};
61
+ --tabs-bg-color: #{theme.theme-color(tabs-bg-color, light)};
62
+ --tabs-color: #{theme.theme-color(tabs-color, light)};
63
+ --tabs-border-color: #{theme.theme-color(tabs-border-color, light)};
64
+ --tabs-nav-border-color: #{theme.theme-color(tabs-nav-border-color, light)};
65
+ --tab-btn-color: #{theme.theme-color(tab-btn-color, light)};
66
+ --tab-btn-color-hover: #{theme.theme-color(tab-btn-color-hover, light)};
67
+ --tab-btn-color-active: #{theme.theme-color(tab-btn-color-active, light)};
68
+ --resume-bg-color: #{theme.theme-color(resume-bg-color, light)};
69
+ --resume-title-text-color: #{theme.theme-color(resume-title-text-color, light)};
70
+ --resume-content-text-color: #{theme.theme-color(resume-content-text-color, light)};
71
+ --resume-text-muted-color: #{theme.theme-color(resume-text-muted-color, light)};
72
+ --resume-border-color: #{theme.theme-color(resume-border-color, light)};
73
+ }
74
+
75
+ :root[data-theme="dark"] {
76
+ --bg-color: #{theme.theme-color(bg, dark)};
77
+ --text-color: #{theme.theme-color(text, dark)};
78
+ --text-muted-color: #{theme.theme-color(text-muted, dark)};
79
+ --primary-color: #{theme.theme-color(primary, dark)};
80
+ --shadow-color: #{theme.theme-color(shadow-color, dark)};
81
+ --code-color: #{theme.theme-color(code-color, dark)};
82
+ --code-block-header-color: #{theme.theme-color(code-block-header-color, dark)};
83
+ --border-color: #{theme.theme-color(border-color, dark)};
84
+ --scrollbar-color: #{theme.theme-color(scrollbar-color, dark)};
85
+ --blockquote-bg-color: #{theme.theme-color(blockquote-bg-color, dark)};
86
+ --footer-border-color: #{theme.theme-color(footer-border-color, dark)};
87
+ --footer-bg-color: #{theme.theme-color(footer-bg-color, dark)};
88
+ --terminal-shadow: #{theme.theme-color(terminal-shadow, dark)};
89
+ --sumary-bg-color: #{theme.theme-color(sumary-bg-color, dark)};
90
+ --checkbox-border-color: #{theme.theme-color(checkbox-border-color, dark)};
91
+ --checkbox-border-color-after: #{theme.theme-color(checkbox-border-color-after, dark)};
92
+ --table-color: #{theme.theme-color(table-color, dark)};
93
+ --table-tr-bg-color: #{theme.theme-color(table-tr-bg-color, dark)};
94
+ --table-tr-border-color: #{theme.theme-color(table-tr-border-color, dark)};
95
+ --table-td-border-color: #{theme.theme-color(table-td-border-color, dark)};
96
+ --table-tr-odd-bg-color: #{theme.theme-color(table-tr-odd-bg-color, dark)};
97
+ --table-tr-even-bg-color: #{theme.theme-color(table-tr-even-bg-color, dark)};
98
+ --terminal-color: #{theme.theme-color(terminal-color, dark)};
99
+ --terminal-bg-color: #{theme.theme-color(terminal-bg-color, dark)};
100
+ --terminal-border-color: #{theme.theme-color(terminal-border-color, dark)};
101
+ --terminal-btn-close-bg-color: #{theme.theme-color(terminal-btn-close-bg-color, dark)};
102
+ --terminal-btn-min-bg-color: #{theme.theme-color(terminal-btn-min-bg-color, dark)};
103
+ --terminal-btn-max-bg-color: #{theme.theme-color(terminal-btn-max-bg-color, dark)};
104
+ --terminal-title-color: #{theme.theme-color(terminal-title-color, dark)};
105
+ --terminal-screen-text-shadow: #{theme.theme-color(terminal-screen-text-shadow, dark)};
106
+ --terminal-screen-after-bg-color: #{theme.theme-color(terminal-screen-after-bg-color, dark)};
107
+ --terminal-header-border-bottom-color: #{theme.theme-color(terminal-header-border-bottom-color, dark)};
108
+ --terminal-prompt-text-color: #{theme.theme-color(terminal-prompt-text-color, dark)};
109
+ --terminal-screen-text-transform: #{theme.theme-color(terminal-screen-text-transform, dark)};
110
+ --terminal-cursor-color: #{theme.theme-color(terminal-cursor-color, dark)};
111
+ --terminal-screen-link-color: #{theme.theme-color(terminal-screen-link-color, dark)};
112
+ --details-bg-color: #{theme.theme-color(details-bg-color, dark)};
113
+ --video-border-color: #{theme.theme-color(video-border-color, dark)};
114
+ --chart-bg-color: #{theme.theme-color(chart-bg-color, dark)};
115
+ --chart-box-shadow-color: #{theme.theme-color(chart-box-shadow-color, dark)};
116
+ --tabs-bg-color: #{theme.theme-color(tabs-bg-color, dark)};
117
+ --tabs-color: #{theme.theme-color(tabs-color, dark)};
118
+ --tabs-border-color: #{theme.theme-color(tabs-border-color, dark)};
119
+ --tabs-nav-border-color: #{theme.theme-color(tabs-nav-border-color, dark)};
120
+ --tab-btn-color: #{theme.theme-color(tab-btn-color, dark)};
121
+ --tab-btn-color-hover: #{theme.theme-color(tab-btn-color-hover, dark)};
122
+ --tab-btn-color-active: #{theme.theme-color(tab-btn-color-active, dark)};
123
+ --resume-bg-color: #{theme.theme-color(resume-bg-color, dark)};
124
+ --resume-title-text-color: #{theme.theme-color(resume-title-text-color, dark)};
125
+ --resume-content-text-color: #{theme.theme-color(resume-content-text-color, dark)};
126
+ --resume-text-muted-color: #{theme.theme-color(resume-text-muted-color, dark)};
127
+ --resume-border-color: #{theme.theme-color(resume-border-color, dark)};
128
+ }