INPUT_OBJECT

ProjectFieldStylesInput

link GraphQL Schema definition

1input ProjectFieldStylesInput {
4
2# The color in RRGGBB format, e.g. `a4a4a4`.
3color: Color!
7
5# A comma delimited string of fonts, e.g. `helvetica,arial,sans-serif`.
6fontFamily: FontFamily!
9
8fontSize: Int!
12
10# Font style, e.g. `normal`.
11fontStyle: FontStyle!
15
13# Font weight, e.g. `bold`.
14fontWeight: FontWeight!
17
16lineHeight: Float!
20
18# Text alignment, e.g. `left`.
19textAlign: TextAlign!
23
21# Text decoration, e.g. `none`.
22textDecoration: TextDecoration!
26
24# Text transform, e.g. `uppercase`.
25textTransform: TextTransform!
27}