Is it possible to change the text color in a valuebox? #12704
Replies: 3 comments
-
Please provide context in text and with a fully reproducible example. Here you only shared a code cell with nothing else. |
Beta Was this translation helpful? Give feedback.
-
Regarding the font colour in ---
format: dashboard
include-in-header:
- text: |
<style>
.my-valuebox {
color: #ffffff;
}
</style>
---
```{r}
#| content: valuebox
#| title: "Número de especies En Peligro Crítico"
#| classes: "my-valuebox"
list(
icon = "arrow-right-square-fill",
color = "#D81E05",
value = 35
)
``` |
Beta Was this translation helpful? Give feedback.
-
Thank you very much.
|
Beta Was this translation helpful? Give feedback.
-
Description
Is it possible to change the text color in a valuebox?
Beta Was this translation helpful? Give feedback.
All reactions