Skip to content

Commit 2e5e176

Browse files
committed
Refactor CSS vars, add utilities & assets
Consolidate and rename theme variables, expand utility classes, and add image assets/icons. input.css: replaced :root/dark vars with a @theme token set and renamed color/font variables; output.css: huge expansion of design tokens, @Property declarations, and dozens of Tailwind-style utility classes (spacing, sizes, transforms, gradients, typography, opacity, etc.). Added new image assets and SVG icons (github, gmail, instagram, linkedin, johnny, paper-plane2, resume, 12.jpg) and updated precious-gem.webp. Updated links/index.html markup to reflect the new stylesheet and content structure.
1 parent 837ebd8 commit 2e5e176

12 files changed

Lines changed: 999 additions & 185 deletions

File tree

assets/css/input.css

Lines changed: 21 additions & 71 deletions
Original file line numberDiff line numberDiff line change
@@ -13,88 +13,38 @@
1313
src: url("../fonts/Montserrat.ttf");
1414
font-style: normal;
1515
font-display: swap;
16+
color: rgba(138, 48, 255, 0.2);
1617
}
1718

18-
:root {
19-
/* ===== PADRÃO (NÃO MUDA) ===== */
19+
@theme {
20+
--font-sekuya: "Sekuya", sans-serif;
21+
--font-montserrat: "Montserrat", sans-serif;
2022

21-
--font-display: "Sekuya", sans-serif;
22-
--font-default: "Montserrat", sans-serif;
23+
--color-primary: #5E1ABA;
24+
--color-secondary: #A685A3;
2325

24-
--primary: #5E1ABA;
25-
--secondary: #A685A3;
26+
--color-dark-base: #0D0028;
27+
--color-dark-surface-1: #140033;
28+
--color-dark-surface-2: #1B0A3D;
2629

27-
/* ===== DARK THEME ===== */
28-
--base: #0D0028;
30+
--color-dark-primary-hover: #7A2CF0;
31+
--color-dark-accent: #6EC8FF;
2932

30-
--surface-1: #140033;
31-
--surface-2: #1B0A3D;
33+
--color-dark-text: #EAE6FF;
34+
--color-dark-muted: #A685A3;
3235

33-
--primary-hover: #7A2CF0;
34-
35-
--accent: #6EC8FF;
36-
37-
--text: #EAE6FF;
38-
--text-muted: #A685A3;
39-
}
36+
--color-dark-border: rgba(138, 48, 255, 0.2);
4037

41-
[data-theme="dark"] {
4238
/* ===== LIGHT THEME ===== */
43-
--base: #F7F4FB;
44-
45-
--surface-1: #fff;
46-
--surface-2: #EFEAF6;
47-
48-
--primary-hover: #4B1496;
49-
50-
--accent: #5FADE6;
51-
52-
--text: #1B102A;
53-
--text-muted: #5A4B66;
54-
}
39+
--color-light-base: #F7F4FB;
5540

56-
@layer utilities {
57-
.font-sekuya {
58-
font-family: var(--font-display);
59-
}
41+
--color-light-surface-1: #fff;
42+
--color-light-surface-2: #EFEAF6;
6043

61-
.font-montserrat {
62-
font-family: var(--font-default);
63-
}
44+
--color-light-primary-hover: #4B1496;
6445

65-
.bg-base {
66-
background-color: var(--base);
67-
}
68-
69-
.bg-surface {
70-
background-color: var(--surface-1);
71-
}
72-
73-
.bg-surface2 {
74-
background-color: var(--surface-2);
75-
}
76-
77-
.bg-primary {
78-
background-color: var(--primary);
79-
}
80-
81-
.bg-primary:hover {
82-
background-color: var(--primary-hover);
83-
}
84-
85-
.bg-secondary {
86-
background-color: var(--secondary);
87-
}
88-
89-
.bg-accent {
90-
background-color: var(--accent);
91-
}
92-
93-
.text-base {
94-
color: var(--text);
95-
}
46+
--color-light-accent: #5FADE6;
9647

97-
.text-muted {
98-
color: var(--text-muted);
99-
}
48+
--color-light-text: #1B102A;
49+
--color-light-text-muted: #5A4B66;
10050
}

0 commit comments

Comments
 (0)