|
1 | 1 | @import "./color_schemes/dark"; |
2 | 2 |
|
3 | | -$body-background-color: #24180c; |
4 | | -$sidebar-color: #24180c; |
| 3 | +$body-background-color: #2f2319; |
| 4 | +$sidebar-color: #2f2319; |
5 | 5 | $link-color: $red-200; |
6 | 6 | $btn-primary-color: $red-300; |
7 | 7 |
|
8 | 8 | // Hexagonal circle packing |
9 | 9 | body, .side-bar { |
10 | 10 | background-image: |
11 | | - radial-gradient(circle at 25% 25%, rgba(0,0,0,0.25) 5px, transparent 0), |
12 | | - radial-gradient(circle at 50% 75%, rgba(0,0,0,0.25) 5px, transparent 0), |
13 | | - radial-gradient(circle at 75% 25%, rgba(0,0,0,0.25) 5px, transparent 0), |
14 | | - radial-gradient(circle at 0% 75%, rgba(0,0,0,0.25) 5px, transparent 0), |
15 | | - radial-gradient(circle at 100% 75%, rgba(0,0,0,0.25) 5px, transparent 0); |
16 | | - // The size difference here makes it into regular hexagons |
17 | | - background-size: 36px 32px; |
| 11 | + radial-gradient(circle at 25% 25%, rgba(0,0,0,0.25) 2px, transparent 0), |
| 12 | + radial-gradient(circle at 50% 75%, rgba(0,0,0,0.25) 2px, transparent 0), |
| 13 | + radial-gradient(circle at 75% 25%, rgba(0,0,0,0.25) 2px, transparent 0), |
| 14 | + radial-gradient(circle at 0% 75%, rgba(0,0,0,0.25) 2px, transparent 0), |
| 15 | + radial-gradient(circle at 100% 75%, rgba(0,0,0,0.25) 2px, transparent 0); |
| 16 | + // Uneven to make a perfect regular hexagon pattern. This does not skew the circles. |
| 17 | + background-size: 24px calc(24px*sqrt(3)/2); |
18 | 18 | } |
19 | 19 |
|
20 | 20 | // Add some borders to make things a little clearer ontop of the accents |
|
0 commit comments