Skip to content

Commit

Permalink
Showing 6 changed files with 30 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -50,7 +50,7 @@ Theme data is a representation of the Weave visual design language in the form o
### Basics
- Typography - See [`<Typography>`](./packages/typography/README.md) and [`<RichText>`](./packages/rich-text/README.md)
- Layout - See [`<Spacer>`](./packages/spacer/README.md) and [`<Surface>`](./packages/surface/README.md)
- Icons - See [`<Icons>`](./packages/icons/README.md) to easily render icons in React and the [`@hig/icons`](./packages/icons/README.md) package for svg data
- Icons - See [`<Icons>`](./packages/icons/README.md) to easily render icons in React and the [`@weave-design/icons`](./packages/icons/README.md) package for svg data

### Components

2 changes: 1 addition & 1 deletion packages/icons/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Icons

This package retains the source of the library of Weave icons.
You can import individual icons to render on your app.
You can import individual icons to render in your app.

```jsx
import { Assets24 } from "@weave-design/icons";
9 changes: 9 additions & 0 deletions packages/theme-data/src/baseTheme/components/input.js
Original file line number Diff line number Diff line change
@@ -124,6 +124,15 @@ export default {
alpha: 0.2,
},
},
"input.value.error.highlightColor": {
type: COLOR,
value: {
ref: "colorScheme.status.error",
},
transform: {
alpha: 0.25,
},
},
"input.value.lineHeight": {
type: LINE_HEIGHT,
value: {
9 changes: 9 additions & 0 deletions packages/theme-data/src/baseTheme/system/colorScheme.js
Original file line number Diff line number Diff line change
@@ -71,6 +71,15 @@ export default {
},
type: COLOR,
},
"halo.error": {
value: {
ref: "colorScheme.status.error",
},
transform: {
alpha: 0.25,
},
type: COLOR,
},
"halo.focus": {
value: {
ref: "colorScheme.reference.accent",
Original file line number Diff line number Diff line change
@@ -35,4 +35,9 @@ export default {
ref: "basics.colors.secondary.darkBlue.200",
},
},
"input.value.error.highlightColor": {
transform: {
alpha: 0.35,
},
},
};
Original file line number Diff line number Diff line change
@@ -258,6 +258,11 @@ export default {
alpha: 0.25,
},
},
"halo.error": {
transform: {
alpha: 0.35,
},
},
"indicator.default": {
value: {
ref: "colorScheme.reference.base",

0 comments on commit 07089d7

Please sign in to comment.