Skip to content

Commit 28d8b49

Browse files
committed
docs: Update Notes colors
1 parent 125d2cb commit 28d8b49

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,4 @@ With our first Mosaic Release 🎉 we introduce the first compoment that makes i
1313
Mosaic Slider offers a wide range of customization including custom Thumbs, custom Values Distribution and more
1414

1515

16-
You can learn more about Mosaic on our documentation page
17-
18-
https://monstar-lab-oss.github.io/android-mosaic/
16+
You can learn more about Mosaic on our [documentation page](https://monstar-lab-oss.github.io/android-mosaic/)

docs/slider.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,8 @@ By default, Mosaic Slider will use `SliderValuesDistribution.Linear` which would
146146
### Parabolic Values Distribution
147147
Parabolic Values Distribution allows you to arrange your values in parabolic fashion. For this, you would have to provide your `a`,`b` and `c` values for the `axˆ2 + bx+ c` equation.
148148

149-
> Note that curve must be increasing in Y-value for the slider to work properly. Also since parabolic curve is symetric only one value will be used when inversing it
149+
!!! note
150+
Note that curve must be increasing in Y-value for the slider to work properly. Also since parabolic curve is symetric only one value will be used when inversing it
150151

151152
```kotlin
152153
val myDistribution = SliderValuesDistribution.parbolic(a, b, c)

docs/stylesheets/extra.css

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,12 @@
1717
/* default text color */
1818
--md-typeset-color: white;
1919

20+
/* color for blockquotes */
21+
--md-admonition-fg-color: white;
22+
2023
/* color for links */
2124
--md-typeset-a-color: yellow;
2225

23-
2426
--md-footer-fg-color: yellow;
2527
--md-footer-bg-color: black;
2628

@@ -33,13 +35,13 @@
3335

3436
/* color for code highlighting, works kinda like Dracula Theme */
3537
--md-code-hl-number-color: #A9B7C5;
36-
--md-code-hl-special-color: #A9B7C5;
38+
--md-code-hl-special-color: #6BB38A;
3739
--md-code-hl-function-color: #A9B7C5;
3840
--md-code-hl-constant-color: #A9B7C5;
3941
--md-code-hl-keyword-color: #CB7832;
4042
--md-code-hl-string-color: #6A8759;
4143
--md-code-hl-name-color: #A9B7C5;
42-
--md-code-hl-operator-color: #A9B7C5;
44+
--md-code-hl-operator-color: #56C1D6;
4345
--md-code-hl-punctuation-color: #A9B7C5;
4446
--md-code-hl-comment-color: #6A8759;
4547
--md-code-hl-generic-color: #A9B7C5;

mkdocs.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,5 @@ markdown_extensions:
3131
- pymdownx.inlinehilite
3232
- pymdownx.snippets
3333
- pymdownx.superfences
34+
- admonition
35+

0 commit comments

Comments
 (0)