Skip to content

Commit

Permalink
. (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcpeapsUnterstrichHD authored Dec 23, 2024
1 parent 10ecf0f commit 71391cd
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 40 deletions.
Binary file modified .DS_Store
Binary file not shown.
92 changes: 54 additions & 38 deletions src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,48 +4,64 @@

@layer base {
:root {
--background: 0 0% 100%;
--foreground: 240 10% 3.9%;
--muted: 240 4.8% 95.9%;
--muted-foreground: 240 3.8% 46.1%;
--popover: 0 0% 100%;
--popover-foreground: 240 10% 3.9%;
--card: 0 0% 100%;
--card-foreground: 240 10% 3.9%;
--border: 360 100% 28.08%;
--input: 122.26 33.53% 82.64%;
--primary: 142.1 76.2% 36.3%;
--primary-foreground: 131.32 0% 100%;
--secondary: 0 76.22% 36.27%;
--secondary-foreground: 240 0% 100%;
--accent: 120 100% 89.22%;
--accent-foreground: 240 0% 0%;
--destructive: 0 100% 50%;
--destructive-foreground: 0 0% 100%;
--ring: 142.1 76.2% 36.3%;
--background: 216 16% 16%; /* nord0 */
--foreground: 218 27% 94%; /* nord6 */
--muted: 220 16% 22%; /* nord1 */
--muted-foreground: 218 27% 80%; /* nord4 */
--popover: 222 16% 28%; /* nord2 */
--popover-foreground: 218 27% 94%; /* nord6 */
--card: 224 16% 32%; /* nord3 */
--card-foreground: 218 27% 94%; /* nord6 */
--border: 220 16% 22%; /* nord1 */
--input: 220 16% 22%; /* nord1 */
--primary: 193 43% 67%; /* nord8 */
--primary-foreground: 218 27% 94%; /* nord6 */
--secondary: 179 25% 65%; /* nord7 */
--secondary-foreground: 218 27% 94%; /* nord6 */
--accent: 210 34% 63%; /* nord9 */
--accent-foreground: 218 27% 94%; /* nord6 */
--destructive: 354 42% 56%; /* nord11 */
--destructive-foreground: 218 27% 94%; /* nord6 */
--ring: 193 43% 67%; /* nord8 */
--radius: 0.5rem;
--sidebar-background: 220 16% 22%; /* nord1 */
--sidebar-foreground: 218 27% 80%; /* nord4 */
--sidebar-primary: 193 43% 67%; /* nord8 */
--sidebar-primary-foreground: 218 27% 94%; /* nord6 */
--sidebar-accent: 210 34% 63%; /* nord9 */
--sidebar-accent-foreground: 218 27% 94%; /* nord6 */
--sidebar-border: 224 16% 32%; /* nord3 */
--sidebar-ring: 193 43% 67%; /* nord8 */
}

.dark {
--background: 20 14.3% 4.1%;
--foreground: 0 0% 95%;
--muted: 0 0% 15%;
--muted-foreground: 240 5% 64.9%;
--popover: 0 0% 9%;
--popover-foreground: 0 0% 95%;
--card: 24 9.8% 10%;
--card-foreground: 0 0% 95%;
--border: 0 98.26% 20.18%;
--input: 124.53 14% 27.67%;
--primary: 142.1 70.6% 45.3%;
--primary-foreground: 144.9 80.4% 10%;
--secondary: 0 70.56% 45.29%;
--secondary-foreground: 0 80.39% 10%;
--accent: 120 100% 7.84%;
--accent-foreground: 0 0% 100%;
--destructive: 0 70.56% 45.29%;
--destructive-foreground: 0 80.39% 10%;
--ring: 142.4 71.8% 29.2%;
--background: 216 16% 16%; /* nord0 */
--foreground: 218 27% 94%; /* nord6 */
--muted: 220 16% 22%; /* nord1 */
--muted-foreground: 218 27% 80%; /* nord4 */
--popover: 222 16% 28%; /* nord2 */
--popover-foreground: 218 27% 94%; /* nord6 */
--card: 224 16% 32%; /* nord3 */
--card-foreground: 218 27% 94%; /* nord6 */
--border: 220 16% 22%; /* nord1 */
--input: 220 16% 22%; /* nord1 */
--primary: 193 43% 67%; /* nord8 */
--primary-foreground: 218 27% 94%; /* nord6 */
--secondary: 179 25% 65%; /* nord7 */
--secondary-foreground: 218 27% 94%; /* nord6 */
--accent: 210 34% 63%; /* nord9 */
--accent-foreground: 218 27% 94%; /* nord6 */
--destructive: 354 42% 56%; /* nord11 */
--destructive-foreground: 218 27% 94%; /* nord6 */
--ring: 193 43% 67%; /* nord8 */
--sidebar-background: 220 16% 22%; /* nord1 */
--sidebar-foreground: 218 27% 80%; /* nord4 */
--sidebar-primary: 193 43% 67%; /* nord8 */
--sidebar-primary-foreground: 218 27% 94%; /* nord6 */
--sidebar-accent: 210 34% 63%; /* nord9 */
--sidebar-accent-foreground: 218 27% 94%; /* nord6 */
--sidebar-border: 224 16% 32%; /* nord3 */
--sidebar-ring: 193 43% 67%; /* nord8 */
}
}

Expand Down
4 changes: 2 additions & 2 deletions src/components/particles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ export default function Particles({
const dy = (Math.random() - 0.5) * 0.2;
const magnetism = 0.1 + Math.random() * 4;
const color = getRandomColor(
`rgba(255,0,0,${alpha})`,
`rgba(0,255,0,${alpha})`,
`rgba(191,97,106,${alpha})`, // Nord red (nord11)
`rgba(163,190,140,${alpha})` // Nord green (nord14)
);
return {
x,
Expand Down

0 comments on commit 71391cd

Please sign in to comment.