mirror of
https://github.com/AmanTahiliani/Portfolio.git
synced 2026-08-08 04:06:15 -04:00
Compare commits
8 Commits
contact-me
...
dark-mode-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c7c331d5e9 | ||
|
|
a4925d5944 | ||
|
|
c21eda8c6b | ||
|
|
0ffd128e69 | ||
|
|
d6e5d1f184 | ||
|
|
c3df99e6c9 | ||
|
|
f3a115e610 | ||
|
|
0422ef27d2 |
45
src/App.css
45
src/App.css
@@ -1,13 +1,29 @@
|
|||||||
.App {
|
.App {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
background-color: black;
|
background-color: var(--background-primary);
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0px;
|
top: 0px;
|
||||||
right: 0px;
|
right: 0px;
|
||||||
left: 0px;
|
left: 0px;
|
||||||
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
|
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
|
||||||
color: azure;
|
color: var(--text-primary);
|
||||||
overflow: hidden;
|
overflow-x: hidden;
|
||||||
|
scroll-behavior: smooth;
|
||||||
|
}
|
||||||
|
|
||||||
|
html {
|
||||||
|
scroll-behavior: smooth;
|
||||||
|
}
|
||||||
|
|
||||||
|
section {
|
||||||
|
opacity: 0;
|
||||||
|
transform: translateY(20px);
|
||||||
|
transition: opacity 0.6s ease-out, transform 0.6s ease-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
section.visible {
|
||||||
|
opacity: 1;
|
||||||
|
transform: translateY(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
.App-logo {
|
.App-logo {
|
||||||
@@ -22,18 +38,18 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.App-header {
|
.App-header {
|
||||||
background-color: black;
|
background-color: var(--background-primary);
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
font-size: calc(10px + 2vmin);
|
font-size: calc(10px + 2vmin);
|
||||||
color: white;
|
color: var(--text-primary);
|
||||||
}
|
}
|
||||||
|
|
||||||
.App-link {
|
.App-link {
|
||||||
color: #61dafb;
|
color: var(--accent-primary);
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes App-logo-spin {
|
@keyframes App-logo-spin {
|
||||||
@@ -58,11 +74,22 @@ hr {
|
|||||||
width: 70%;
|
width: 70%;
|
||||||
margin-left: 15% !important;
|
margin-left: 15% !important;
|
||||||
margin-right: 15% !important;
|
margin-right: 15% !important;
|
||||||
border: 10px solid aquamarine;
|
border: 10px solid var(--hr-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.publications {
|
.publications, .Experience, .DevTools, .Contact {
|
||||||
margin-top: 230px;
|
margin-top: 100px;
|
||||||
|
padding: 40px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.section-title {
|
||||||
|
margin-bottom: 40px;
|
||||||
|
transform: translateY(0);
|
||||||
|
transition: transform 0.4s ease-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
section:hover .section-title {
|
||||||
|
transform: translateY(-5px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.slick-dots button:before {
|
.slick-dots button:before {
|
||||||
|
|||||||
101
src/App.js
101
src/App.js
@@ -5,6 +5,9 @@ import {
|
|||||||
Routes,
|
Routes,
|
||||||
useLocation,
|
useLocation,
|
||||||
} from "react-router-dom";
|
} from "react-router-dom";
|
||||||
|
import { ThemeProvider, useTheme } from './context/ThemeContext';
|
||||||
|
import './css/theme.css';
|
||||||
|
import ThemeToggle from './components/ThemeToggle';
|
||||||
import { CSSTransition, TransitionGroup } from "react-transition-group";
|
import { CSSTransition, TransitionGroup } from "react-transition-group";
|
||||||
import "./App.css";
|
import "./App.css";
|
||||||
import "./css/home.css";
|
import "./css/home.css";
|
||||||
@@ -17,46 +20,66 @@ import DevToolsComponent from "./components/devtools";
|
|||||||
import SocialMedia from "./components/SocialMedia";
|
import SocialMedia from "./components/SocialMedia";
|
||||||
|
|
||||||
function Portfolio() {
|
function Portfolio() {
|
||||||
|
const { isDarkMode } = useTheme();
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const observer = new IntersectionObserver((entries) => {
|
||||||
|
entries.forEach(entry => {
|
||||||
|
if (entry.isIntersecting) {
|
||||||
|
entry.target.classList.add('visible');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}, { threshold: 0.1 });
|
||||||
|
|
||||||
|
document.querySelectorAll('section').forEach((section) => {
|
||||||
|
observer.observe(section);
|
||||||
|
});
|
||||||
|
|
||||||
|
return () => observer.disconnect();
|
||||||
|
}, []);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="App">
|
<div className="App">
|
||||||
<meta name="Aman Tahiliani's Portfolio"></meta>
|
<meta name="Aman Tahiliani's Portfolio"></meta>
|
||||||
|
<ThemeToggle />
|
||||||
|
<nav>
|
||||||
<Header />
|
<Header />
|
||||||
|
</nav>
|
||||||
<hr></hr>
|
<hr></hr>
|
||||||
|
<main>
|
||||||
|
<section>
|
||||||
<About className="About" id="About" />
|
<About className="About" id="About" />
|
||||||
<div className="publications" id="Publications">
|
</section>
|
||||||
<h2 style={{ color: "salmon", fontSize: "50px" }}>
|
<section className="publications" id="Publications">
|
||||||
|
<h2 className="section-title" style={{ color: "salmon", fontSize: "50px" }}>
|
||||||
<b>Publications</b>
|
<b>Publications</b>
|
||||||
</h2>
|
</h2>
|
||||||
<SimpleSlider />
|
<SimpleSlider />
|
||||||
</div>
|
</section>
|
||||||
|
|
||||||
<div className="Experience" id="Experience">
|
<section className="Experience" id="Experience">
|
||||||
<h2 style={{ color: "salmon", fontSize: "50px", marginTop: "110px" }}>
|
<h2 className="section-title" style={{ color: "salmon", fontSize: "50px" }}>
|
||||||
<b>Experience</b>
|
<b>Experience</b>
|
||||||
</h2>
|
</h2>
|
||||||
<Experience />
|
<Experience />
|
||||||
</div>
|
</section>
|
||||||
<div className="DevTools" id="DevTools" style={{ marginBottom: "100px" }}>
|
<section className="DevTools" id="DevTools">
|
||||||
<h2 style={{ color: "salmon", fontSize: "50px" }}>
|
<h2 className="section-title" style={{ color: "salmon", fontSize: "50px" }}>
|
||||||
<b>Dev Tools</b>
|
<b>Dev Tools</b>
|
||||||
</h2>
|
</h2>
|
||||||
<DevToolsComponent />
|
<DevToolsComponent />
|
||||||
</div>
|
</section>
|
||||||
<hr />
|
<section className="Contact" id="Contact">
|
||||||
<div className="Contact" id="Contact" style={{ marginTop: "100px" }}>
|
<h2 className="section-title" style={{ color: "cyan", fontSize: "50px" }}>
|
||||||
<h2 style={{ color: "cyan", fontSize: "50px" }}>
|
<b>Social Links</b>
|
||||||
<b>Contact Me!</b>
|
|
||||||
</h2>
|
</h2>
|
||||||
<SocialMedia
|
<SocialMedia
|
||||||
style={{ color: "white" }}
|
style={{ color: "white" }}
|
||||||
useColorIcons={false}
|
useColorIcons={false}
|
||||||
whiteIcons={true}
|
whiteIcons={true}
|
||||||
/>
|
/>
|
||||||
</div>
|
</section>
|
||||||
{/* <div className="Contact" id="Contact">
|
</main>
|
||||||
<h2 style={{color:"salmon", fontSize:"50px", marginTop:"60px"}}><b>Contact Me!</b></h2>
|
|
||||||
<Contact/>
|
|
||||||
</div> */}
|
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -71,8 +94,11 @@ function Books() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function Home() {
|
function Home() {
|
||||||
|
const { isDarkMode } = useTheme();
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="home">
|
<div className="home">
|
||||||
|
<ThemeToggle />
|
||||||
<div className="content">
|
<div className="content">
|
||||||
<div className="intro">
|
<div className="intro">
|
||||||
<h1>Welcome to Aman Tahiliani's Space</h1>
|
<h1>Welcome to Aman Tahiliani's Space</h1>
|
||||||
@@ -82,9 +108,9 @@ function Home() {
|
|||||||
<li>
|
<li>
|
||||||
<a href="/portfolio">Developer Portfolio</a>
|
<a href="/portfolio">Developer Portfolio</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
{/* <li>
|
||||||
<a href="/reviews">Book, TV and Movie Reviews</a>
|
<a href="/reviews">Book, TV and Movie Reviews</a>
|
||||||
</li>
|
</li> */}
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
@@ -92,32 +118,29 @@ function Home() {
|
|||||||
<div className="footer">
|
<div className="footer">
|
||||||
<SocialMedia />
|
<SocialMedia />
|
||||||
</div>
|
</div>
|
||||||
|
{/* <div className="Contact" id="Contact">
|
||||||
|
<h2 style={{color:"salmon", fontSize:"50px", marginTop:"60px"}}><b>Contact Me!</b></h2>
|
||||||
|
<Contact/>
|
||||||
|
</div> */}
|
||||||
</div>
|
</div>
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
function AnimatedRoutes() {
|
|
||||||
const location = useLocation();
|
|
||||||
return (
|
|
||||||
<TransitionGroup>
|
|
||||||
<CSSTransition key={location.key} classNames="fade" timeout={300}>
|
|
||||||
<Routes location={location}>
|
|
||||||
<Route path="/portfolio" element={<Portfolio />} />
|
|
||||||
<Route path="/" element={<Portfolio />} />
|
|
||||||
<Route path="/books" element={<Books />} />
|
|
||||||
{/* <Route path="/" element={<Home />} /> */}
|
|
||||||
</Routes>
|
|
||||||
</CSSTransition>
|
|
||||||
</TransitionGroup>
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
function App() {
|
function App() {
|
||||||
return (
|
return (
|
||||||
<Router>
|
<ThemeProvider>
|
||||||
<AnimatedRoutes />
|
<Router>
|
||||||
</Router>
|
<div>
|
||||||
|
<Routes>
|
||||||
|
<Route path="/" element={<Home />} />
|
||||||
|
<Route path="/portfolio" element={<Portfolio />} />
|
||||||
|
<Route path="/reviews" element={<Books />} />
|
||||||
|
</Routes>
|
||||||
|
</div>
|
||||||
|
</Router>
|
||||||
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
export default App;
|
export default App;
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ class Header extends Component {
|
|||||||
<a href="#About">About</a>
|
<a href="#About">About</a>
|
||||||
</Col>
|
</Col>
|
||||||
<Col>
|
<Col>
|
||||||
<a href="#Publications">Publications</a>
|
<a href="#Experience">Experience</a>
|
||||||
</Col>
|
</Col>
|
||||||
</Row>
|
</Row>
|
||||||
</Col>
|
</Col>
|
||||||
@@ -28,17 +28,18 @@ class Header extends Component {
|
|||||||
</Col>
|
</Col>
|
||||||
<Col xs={12} md={5}>
|
<Col xs={12} md={5}>
|
||||||
<Row className="navRow nonNameCol">
|
<Row className="navRow nonNameCol">
|
||||||
<Col>
|
|
||||||
<a href="#Experience">Experience</a>
|
|
||||||
</Col>
|
|
||||||
<Col>
|
<Col>
|
||||||
<a href="#DevTools">Devtools</a>
|
<a href="#DevTools">Devtools</a>
|
||||||
</Col>
|
</Col>
|
||||||
|
<Col>
|
||||||
|
<a href="#Publications">Publications</a>
|
||||||
|
</Col>
|
||||||
<Col>
|
<Col>
|
||||||
<a
|
<a
|
||||||
href="#Contact"
|
href="#Contact"
|
||||||
>
|
>
|
||||||
Contact Me!
|
Social Links
|
||||||
</a>
|
</a>
|
||||||
</Col>
|
</Col>
|
||||||
</Row>
|
</Row>
|
||||||
|
|||||||
19
src/components/ThemeToggle.js
Normal file
19
src/components/ThemeToggle.js
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
import React from 'react';
|
||||||
|
import { useTheme } from '../context/ThemeContext';
|
||||||
|
import '../css/ThemeToggle.css';
|
||||||
|
|
||||||
|
const ThemeToggle = () => {
|
||||||
|
const { isDarkMode, toggleTheme } = useTheme();
|
||||||
|
|
||||||
|
return (
|
||||||
|
<button
|
||||||
|
className="theme-toggle"
|
||||||
|
onClick={toggleTheme}
|
||||||
|
aria-label="Toggle theme"
|
||||||
|
>
|
||||||
|
{isDarkMode ? '☀️' : '🌙'}
|
||||||
|
</button>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default ThemeToggle;
|
||||||
@@ -1,70 +1,52 @@
|
|||||||
import React, { Component, useState } from "react";
|
import React from "react";
|
||||||
import "bootstrap/dist/css/bootstrap.css";
|
import "bootstrap/dist/css/bootstrap.css";
|
||||||
// import { Row, Col, TabContainer } from "react-bootstrap";
|
import { FaGithub, FaLinkedin, FaInstagram, FaEnvelope } from "react-icons/fa";
|
||||||
import "../css/contact.css";
|
import "../css/contact.css";
|
||||||
|
|
||||||
function Contact() {
|
function Contact() {
|
||||||
const [name, setName] = useState("");
|
|
||||||
const [organization, setOrganization] = useState("");
|
|
||||||
const [message, setMessage] = useState("");
|
|
||||||
const [popup, setPopup] = useState("");
|
|
||||||
|
|
||||||
let handleSubmit = async (e) => {
|
|
||||||
e.preventDefault();
|
|
||||||
try {
|
|
||||||
let res = await fetch("http://localhost:8000/sendMail", {
|
|
||||||
method: "POST",
|
|
||||||
body: JSON.stringify({
|
|
||||||
name: name,
|
|
||||||
organization: organization,
|
|
||||||
message: message,
|
|
||||||
}),
|
|
||||||
});
|
|
||||||
// let resJson = await res.json();
|
|
||||||
console.log(res.status);
|
|
||||||
if (res.status === 200) {
|
|
||||||
setName("");
|
|
||||||
setOrganization("");
|
|
||||||
setMessage("");
|
|
||||||
setPopup("Message sent successfully");
|
|
||||||
} else {
|
|
||||||
setPopup("Some error occured");
|
|
||||||
}
|
|
||||||
} catch (err) {
|
|
||||||
console.log(err);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
return (
|
return (
|
||||||
<div>
|
<div className="social-links">
|
||||||
<form onSubmit={handleSubmit}>
|
<a
|
||||||
<input
|
href="https://github.com/yourusername"
|
||||||
type="text"
|
target="_blank"
|
||||||
value={name}
|
rel="noopener noreferrer"
|
||||||
placeholder="Name"
|
className="social-link"
|
||||||
onChange={(e) => setName(e.target.value)}
|
aria-label="GitHub Profile"
|
||||||
required="true"
|
>
|
||||||
/>
|
<FaGithub className="social-icon" />
|
||||||
<br />
|
<span className="social-text">GitHub</span>
|
||||||
<input
|
</a>
|
||||||
type="text"
|
|
||||||
value={organization}
|
<a
|
||||||
placeholder="Organization"
|
href="https://linkedin.com/in/yourusername"
|
||||||
onChange={(e) => setOrganization(e.target.value)}
|
target="_blank"
|
||||||
/>
|
rel="noopener noreferrer"
|
||||||
<br />
|
className="social-link"
|
||||||
<textarea
|
aria-label="LinkedIn Profile"
|
||||||
className="MessageBox"
|
>
|
||||||
type="textarea"
|
<FaLinkedin className="social-icon" />
|
||||||
value={message}
|
<span className="social-text">LinkedIn</span>
|
||||||
placeholder="Message"
|
</a>
|
||||||
onChange={(e) => setMessage(e.target.value)}
|
|
||||||
required="true"
|
|
||||||
/>
|
|
||||||
<br />
|
|
||||||
<button type="submit">Send!</button>
|
|
||||||
|
|
||||||
<div className="popup">{popup ? <p>{popup}</p> : null}</div>
|
<a
|
||||||
</form>
|
href="https://instagram.com/yourusername"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
|
className="social-link"
|
||||||
|
aria-label="Instagram Profile"
|
||||||
|
>
|
||||||
|
<FaInstagram className="social-icon" />
|
||||||
|
<span className="social-text">Instagram</span>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<a
|
||||||
|
href="mailto:your.email@example.com"
|
||||||
|
className="social-link"
|
||||||
|
aria-label="Email Contact"
|
||||||
|
>
|
||||||
|
<FaEnvelope className="social-icon" />
|
||||||
|
<span className="social-text">Email</span>
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
26
src/context/ThemeContext.js
Normal file
26
src/context/ThemeContext.js
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
import React, { createContext, useState, useContext } from 'react';
|
||||||
|
|
||||||
|
const ThemeContext = createContext();
|
||||||
|
|
||||||
|
export const ThemeProvider = ({ children }) => {
|
||||||
|
const [isDarkMode, setIsDarkMode] = useState(true);
|
||||||
|
|
||||||
|
const toggleTheme = () => {
|
||||||
|
setIsDarkMode(!isDarkMode);
|
||||||
|
document.documentElement.setAttribute('data-theme', !isDarkMode ? 'dark' : 'light');
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<ThemeContext.Provider value={{ isDarkMode, toggleTheme }}>
|
||||||
|
{children}
|
||||||
|
</ThemeContext.Provider>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export const useTheme = () => {
|
||||||
|
const context = useContext(ThemeContext);
|
||||||
|
if (context === undefined) {
|
||||||
|
throw new Error('useTheme must be used within a ThemeProvider');
|
||||||
|
}
|
||||||
|
return context;
|
||||||
|
};
|
||||||
30
src/css/ThemeToggle.css
Normal file
30
src/css/ThemeToggle.css
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
.theme-toggle {
|
||||||
|
position: fixed;
|
||||||
|
top: 20px;
|
||||||
|
right: 20px;
|
||||||
|
z-index: 1000;
|
||||||
|
background: none;
|
||||||
|
border: 2px solid var(--accent-primary);
|
||||||
|
color: var(--text-primary);
|
||||||
|
width: 40px;
|
||||||
|
height: 40px;
|
||||||
|
border-radius: 50%;
|
||||||
|
cursor: pointer;
|
||||||
|
font-size: 20px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme-toggle:hover {
|
||||||
|
transform: scale(1.1);
|
||||||
|
background-color: var(--accent-primary);
|
||||||
|
color: var(--background-primary);
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme-toggle:focus {
|
||||||
|
outline: none;
|
||||||
|
box-shadow: 0 0 0 2px var(--accent-secondary);
|
||||||
|
}
|
||||||
@@ -3,7 +3,7 @@
|
|||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
background-color: #f0f0f0;
|
background-color: var(--background-primary);
|
||||||
}
|
}
|
||||||
|
|
||||||
.content {
|
.content {
|
||||||
@@ -22,13 +22,13 @@
|
|||||||
|
|
||||||
.intro h1 {
|
.intro h1 {
|
||||||
font-size: 3em;
|
font-size: 3em;
|
||||||
color: #333;
|
color: var(--text-primary);
|
||||||
animation: slideIn 1s ease-in-out;
|
animation: slideIn 1s ease-in-out;
|
||||||
}
|
}
|
||||||
|
|
||||||
.intro p {
|
.intro p {
|
||||||
font-size: 1.5em;
|
font-size: 1.5em;
|
||||||
color: #666;
|
color: var(--text-secondary);
|
||||||
animation: slideIn 1s ease-in-out;
|
animation: slideIn 1s ease-in-out;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -45,7 +45,7 @@
|
|||||||
|
|
||||||
.intro nav ul li a {
|
.intro nav ul li a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: #3498db;
|
color: var(--link-color);
|
||||||
font-size: 1.2em;
|
font-size: 1.2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -97,7 +97,6 @@
|
|||||||
.footer {
|
.footer {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 20px 0;
|
padding: 20px 0;
|
||||||
background-color: #f0f0f0;
|
background-color: var(--background-primary);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
||||||
}
|
}
|
||||||
30
src/css/theme.css
Normal file
30
src/css/theme.css
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
:root[data-theme='light'] {
|
||||||
|
--background-primary: #f0f0f0;
|
||||||
|
--background-secondary: #ffffff;
|
||||||
|
--text-primary: #333333;
|
||||||
|
--text-secondary: #666666;
|
||||||
|
--accent-primary: #3498db;
|
||||||
|
--accent-secondary: #2980b9;
|
||||||
|
--border-color: #dddddd;
|
||||||
|
--section-title: #e74c3c;
|
||||||
|
--link-color: #3498db;
|
||||||
|
--hr-color: #2ecc71;
|
||||||
|
}
|
||||||
|
|
||||||
|
:root[data-theme='dark'] {
|
||||||
|
--background-primary: #000000;
|
||||||
|
--background-secondary: #1a1a1a;
|
||||||
|
--text-primary: #ffffff;
|
||||||
|
--text-secondary: #cccccc;
|
||||||
|
--accent-primary: #61dafb;
|
||||||
|
--accent-secondary: #4fa3d1;
|
||||||
|
--border-color: #333333;
|
||||||
|
--section-title: #ff6b6b;
|
||||||
|
--link-color: #61dafb;
|
||||||
|
--hr-color: #00ffbf;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Theme transition */
|
||||||
|
* {
|
||||||
|
transition: background-color 0.3s ease, color 0.3s ease;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user