Skip to content

Commit

Permalink
readme actualizado, agregado fuente y colores usados
Browse files Browse the repository at this point in the history
  • Loading branch information
jaenfigueroa committed Dec 10, 2022
1 parent 6e98ae2 commit e29664f
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 5 deletions.
17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

## 💡 Brief

In this project, I created a Pomodoro timer.
In this project, I developed a Pomodoro timer.

<img src="./assets/temporizador2.gif" align="center" style="width: 100%" />

Expand All @@ -26,6 +26,21 @@ In this project, I created a Pomodoro timer.
- Click on the gear icon to change the length (minutes and seconds) of the timer.
- Once the timer finishes, the ring should change from red to green and an alert message is passed to the browser.

## 🔠 Fonts

- Barlow - https://fonts.google.com/specimen/Barlow?query=Barlow

## 🎨 Colors

- Dark Gray: #2b2a30
- Gray: #3e3e46
- Light gray: #808080
- Green: #00aa51
- Dark green: #058141
- Red: #dc143c
- Dark red: #b91233
- Pink: #ffe1f7

## 🚀 Challenge finished

This challenge was developed with the following languages:
Expand Down
8 changes: 4 additions & 4 deletions sass/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ body {
--color-2: #058141;
}
.tema-rojo {
--color-1: crimson;
--color-2: rgb(185, 18, 51);
--color-1: #dc143c;
--color-2: #b91233;
}

/* ///////////////////// */
Expand All @@ -36,7 +36,7 @@ main {
}

.aviso {
background-color: rgb(255, 225, 247);
background-color: #ffe1f7;
padding: 1rem;
font-size: 2.2rem;
position: absolute;
Expand All @@ -60,7 +60,7 @@ main {
justify-content: center;
align-items: center;
border-radius: 50%;
background-color: gray;
background-color: #808080;
background: conic-gradient(from 180deg, var(--color-1) 100%, black 100%);
box-shadow: -1rem 1rem 2rem 1rem rgba(22, 22, 25, 0.9), 0 0 2rem 2rem rgba(72, 70, 76, 0.7);

Expand Down

0 comments on commit e29664f

Please sign in to comment.