Skip to content

Commit 44a2846

Browse files
committed
UPDATE: Update readmes
1 parent 2a2005f commit 44a2846

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ npm install @matteusan/sentro --save
4141
}
4242

4343
.my-button-theme {
44-
background: sentro.key-create('button-fill', sentro.token-get('secondary'));
45-
color: sentro.key-create('button-ink', sentro.token-get('secondary-ink'));
46-
border-color: sentro.key-create('button-border', sentro.token-get('secondary'));
47-
border-radius: sentro.key-create('button-radius', sentro.token-get('radius-small'));
44+
background: sentro.key-create('button-fill', 'secondary');
45+
color: sentro.key-create('button-ink', 'secondary-ink');
46+
border-color: sentro.key-create('button-border', 'secondary');
47+
border-radius: sentro.key-create('button-radius', 'radius-small');
4848
}
4949
```
5050

packages/sentro/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ npm install @matteusan/sentro --save
4141
}
4242

4343
.my-button-theme {
44-
background: sentro.key-create('button-fill', sentro.token-get('secondary'));
45-
color: sentro.key-create('button-ink', sentro.token-get('secondary-ink'));
46-
border-color: sentro.key-create('button-border', sentro.token-get('secondary'));
47-
border-radius: sentro.key-create('button-radius', sentro.token-get('radius-small'));
44+
background: sentro.key-create('button-fill', 'secondary');
45+
color: sentro.key-create('button-ink', 'secondary-ink');
46+
border-color: sentro.key-create('button-border', 'secondary');
47+
border-radius: sentro.key-create('button-radius', 'radius-small');
4848
}
4949
```
5050

@@ -65,9 +65,9 @@ npm install @matteusan/sentro --save
6565
}
6666

6767
.my-button-theme {
68-
background: var(--sdb-button-fill, var(--sdb-theme-secondary));
69-
color: var(--sdb-button-ink, var(--sdb-theme-secondary-ink));
70-
border-color: var(--sdb-button-border, var(--sdb-theme-secondary));
71-
border-radius: var(--sdb-button-radius, var(--sdb-theme-radius-small));
68+
background: var(--sdb-button-fill, var(--sdb-theme-secondary));
69+
color: var(--sdb-button-ink, var(--sdb-theme-secondary-ink));
70+
border-color: var(--sdb-button-border, var(--sdb-theme-secondary));
71+
border-radius: var(--sdb-button-radius, var(--sdb-theme-radius-small));
7272
}
7373
```

0 commit comments

Comments
 (0)