Skip to content

Commit

Permalink
Enforce light mode, remove Twitter
Browse files Browse the repository at this point in the history
  • Loading branch information
andantet committed Nov 10, 2023
1 parent 8847423 commit 4d0b6bd
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ google_analytics:
# light - Use the light color scheme
# dark - Use the dark color scheme
#
theme_mode: # [light|dark]
theme_mode: light

# The CDN endpoint for images.
# Notice that once it is assigned, the CDN url
Expand Down
2 changes: 1 addition & 1 deletion _includes/sidebar.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ <h1 class="site-title">

{% for entry in site.data.contact %}
{% case entry.type %}
{% when 'github', 'twitter' %}
{% when 'github' %}
{%- capture url -%}
https://{{ entry.type }}.com/{{ site[entry.type].username }}
{%- endcapture -%}
Expand Down
10 changes: 5 additions & 5 deletions _sass/addon/commons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -763,11 +763,11 @@ $btn-mb: 0.5rem;
}

.rainbow {
background-color: violet; /* For browsers that do not support gradients */
background-image: -webkit-linear-gradient(60deg, purple, violet); /* For Safari 5.1 to 6.0 */
background-image: -o-linear-gradient(60deg, purple, violet); /* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(60deg, purple, violet); /* For Firefox 3.6 to 15 */
background-image: linear-gradient(to 60deg, purple, violet); /* Standard syntax (must be last) */
background-color: purple; /* For browsers that do not support gradients */
background-image: -webkit-linear-gradient(100deg, violet, purple); /* For Safari 5.1 to 6.0 */
background-image: -o-linear-gradient(100deg, violet, purple); /* For Opera 11.1 to 12.0 */
background-image: -moz-linear-gradient(100deg, violet, purple); /* For Firefox 3.6 to 15 */
background-image: linear-gradient(to 100deg, violet, purple); /* Standard syntax (must be last) */
background-clip: text;
-webkit-background-clip: text;
color: transparent;
Expand Down
2 changes: 1 addition & 1 deletion _sass/colors/typography-light.scss
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
);

/* Sidebar */
--site-title-color: rgb(113, 113, 113);
--site-title-color: rgb(59, 59, 59);
--site-subtitle-color: #717171;
--sidebar-bg: #f6f8fa;
--sidebar-border-color: #efefef;
Expand Down

0 comments on commit 4d0b6bd

Please sign in to comment.