> For the complete documentation index, see [llms.txt](https://hyperflow.sygnal.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hyperflow.sygnal.com/apps/hyperflow-notion/styling.md).

# Styling

## Tables&#x20;

Create an Embed on the page and paste in this style.  It will style any tables within HTML.

{% hint style="info" %}
This particular styling uses a white border coloring, and assumed a darkmode background.  Adjust that to your style guide.&#x20;
{% endhint %}

```html
<style> 
.w-richtext table {
  border-collapse: collapse;
  width: 100%;
}

.w-richtext td {
  border: 1px solid #ffffff;
  padding: 8px;
  vertical-align: top;
}

.w-richtext tr:first-child td {
  background-color: #2f2f2f;
  color: #ffffff;
}
</style> 
```
