The code for my personal website, powered by Jekyll. arthr.me
jekyll-site personal-website
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: bump theme

+21 -5
+1 -1
Gemfile
··· 8 8 gem "tzinfo-data" 9 9 end 10 10 11 - gem "linus", "~> 1.2" 11 + gem "linus", "~> 1.2.1" 12 12 13 13 gem "jekyll-webmention_io", "~> 4.1", group: :jekyll_plugins 14 14
+4 -4
_config.yml
··· 30 30 31 31 category_colors: 32 32 - name: Esquinas 33 - color: "#F06A55" 33 + color: "#A06840" 34 34 - name: Notas 35 - color: "#F5C842" 35 + color: "#6A8F62" 36 36 - name: Links 37 - color: "#6BAED6" 37 + color: "#5A8090" 38 38 - name: Fotos 39 - color: "#88C0D0" 39 + color: "#907858" 40 40 main_menu: 41 41 title: Navegar 42 42 items:
+16
assets/css/theme.css
··· 6 6 :root { 7 7 --font-body: "Atkinson Hyperlegible Next", sans-serif; 8 8 --font-code: "Atkinson Hyperlegible Mono", monospace; 9 + 10 + --color-background: #F6F3EE; 11 + --color-text: #1E1510; 12 + --color-link: #4D6845; 13 + --color-link-hover: #324530; 14 + --color-support: #A06840; 15 + } 16 + 17 + @media (prefers-color-scheme: dark) { 18 + :root { 19 + --color-background: #1A1210; 20 + --color-text: #EEE9E0; 21 + --color-link: #7FAF72; 22 + --color-link-hover: #A0CF92; 23 + --color-support: #C48855; 24 + } 9 25 } 10 26 11 27