Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dark mode color change #55

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -526,6 +526,7 @@ code {
background-color: #24292e !important;
}


.dark-mode .title {
color: #eae7d9 !important;
}
Expand Down Expand Up @@ -632,3 +633,12 @@ code {
.dark-mode #active-dot {
border: 2px solid #f5f5f5;
}
.dark-mode .Link-hover
{
color:#3273dc;
}
.dark-mode .Link-hover:hover
{

color: #21bf73;
}
6 changes: 5 additions & 1 deletion src/Components/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import {
import ReactTooltip from 'react-tooltip';

const Footer = () => {

return (
<footer className='footer'>
<ReactTooltip type='light' />
Expand All @@ -23,7 +24,7 @@ const Footer = () => {
className='button button-special is-rounded box-shadow-lift'
data-tip='connect on Facebook 🦸‍♂'
>
<Facebook color='blue' className='icon' />
<Facebook color='blue' className='icon' />
</a>
<a
href='https://www.instagram.com/krbinu42/'
Expand Down Expand Up @@ -72,8 +73,11 @@ const Footer = () => {
<p className='menu-label'>
Made with <Heart color='red' fill='red' size='15px' />{' '}
<a
className="Link-hover"
href='https://binu42.netlify.com'
target='_blank'
// style={{color:"#3273dc"}}

rel='noopener noreferrer'
>
By Binu Kumar
Expand Down
2 changes: 1 addition & 1 deletion src/Components/Navbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const Navbar = () => {
>
<div className='navbar-brand'>
<Link className='navbar-item' id='brand' to='/'>
<Terminal color='blue' />
<Terminal color='blue' />
&emsp;WEBDEVSCOM
</Link>

Expand Down