Skip to content

Commit

Permalink
feat: Update colors and styles in theme files
Browse files Browse the repository at this point in the history
  • Loading branch information
GabsEdits committed Mar 12, 2024
1 parent b53844b commit e2af0c4
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions docs/.vitepress/theme/color.scss
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
:root {
--white: #fff;
--white-smoke: #f3f3f3;
--white-smooth: #e0e0e0;
--platinum: #e0e0e0;
--white-smooth: #e1e1e1;
--platinum: #ebebeb;

--black: #000;
--erie-black: #181818;
Expand Down
4 changes: 3 additions & 1 deletion docs/.vitepress/theme/components/Footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@
footer {
text-align: center;
border-radius: 40px 40px 0 0;
background-color: var(--footer-bg);
color: var(--text-color);
padding: 15px;
#red {
Expand All @@ -41,7 +43,7 @@ footer {
a {
text-decoration: none;
color: var(--text-color) !important;
color: var(--text-color);
}
#source-code {
Expand Down
18 changes: 8 additions & 10 deletions docs/.vitepress/theme/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -22,23 +22,21 @@ body {

header {
display: flex;
align-items: center;
justify-content: center;
text-align: center;
width: 100%;
height: 45rem;
height: 35rem;
border-radius: 0 0 40px 40px;
background: linear-gradient(95deg, #92ff7a 32.27%, #ddef6f 68.51%);

h1 {
color: #101010;
color: #1f1f1f;
font-family: "Poppins";
font-size: 4.0625rem;
font-size: 3.2rem;
font-style: normal;
font-weight: 900;
font-weight: 850;
line-height: 94.523%;
text-align: left;
position: relative;
top: 80%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}

@media screen and (max-width: 48rem) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "semantic-html",
"version": "0.7.1",
"version": "0.9.0",
"private": true,
"scripts": {
"docs:dev": "vitepress dev docs",
Expand Down

0 comments on commit e2af0c4

Please sign in to comment.