Skip to content

Commit 661cb66

Browse files
committed
ADD: Color Wheel :)
1 parent 30f546d commit 661cb66

File tree

3 files changed

+40
-0
lines changed

3 files changed

+40
-0
lines changed

Color Wheel/index.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<link rel="stylesheet" href="style.css" />
8+
<title>Color Wheel</title>
9+
</head>
10+
<body>
11+
<div></div>
12+
</body>
13+
</html>

Color Wheel/style.css

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
html,
2+
body {
3+
height: 100%;
4+
}
5+
6+
body {
7+
display: flex;
8+
justify-content: center;
9+
align-items: center;
10+
}
11+
12+
div {
13+
background: conic-gradient(
14+
violet,
15+
indigo,
16+
blue,
17+
green,
18+
yellow,
19+
orange,
20+
red,
21+
violet
22+
);
23+
border-radius: 50%;
24+
aspect-ratio: 1;
25+
width: 50%;
26+
}

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ To use these CSS animations and effects in your Local System , simply download o
3838
| Indian Flag | [Go Live](https://codepen.io/pen/xxyzqVa) | <img src="https://github.com/Deveesh-Shetty/CSS-Is-Fun/assets/89470104/68843a36-a400-4e48-8907-435e68d8cdc0" alt="Indian Flag" width="400" height="400"> | [Code - Indian Flag](https://github.com/Deveesh-Shetty/CSS-Is-Fun/tree/master/Indian%20Flag) |
3939
| Image Carousel I | [Go Live](https://codepen.io/pen/gOBKRNV) | <img src="https://github.com/Deveesh-Shetty/CSS-Is-Fun/assets/89470104/5fc52924-7403-4178-a7ab-fc796cfab567" alt="Image Carousel I" width="400" height="400"> | [Code - Image Carousel I](https://github.com/Deveesh-Shetty/CSS-Is-Fun/tree/master/Carousel%20I) |
4040
| Image Carousel II | [Go Live](https://codepen.io/pen/bGmjbVo) | <img src="https://github.com/Deveesh-Shetty/CSS-Is-Fun/assets/89470104/a8ef65b5-873c-4365-b4be-485bae463e87" alt="Image Carousel II" width="400" height="400"> | [Code - Image Carousel II](https://github.com/Deveesh-Shetty/CSS-Is-Fun/tree/master/Carousel%20II) |
41+
| Color Wheel | [Go Live](https://codepen.io/pen/GRYXvKw) | <img src="https://github.com/Deveesh-Shetty/CSS-Is-Fun/assets/89470104/b4a4bc20-d43b-4bc0-b86d-ae89ae84ff42" alt="Color Wheel" width="400" height="400"> | [Code - Color Wheel](https://github.com/Deveesh-Shetty/CSS-Is-Fun/tree/master/Color%20Wheel) |
4142

4243
<br>
4344

0 commit comments

Comments
 (0)