配色方案定义了 Theme
成员与用于渲染它们的实际颜色之间的映射。
方法
方法 | 返回类型 | 简介 |
---|---|---|
get | Color | 返回此配色方案中与 Theme 关联的具体 Color 。 |
get | Theme | 返回配色方案中所有可能的主题颜色类型的列表。 |
set | Color | 将此配色方案中与 Theme 关联的具体颜色设为指定颜色。 |
set | Color | 将与此配色方案中的 Theme 关联的具体颜色设为 RGB 格式的给定颜色。 |
set | Color | 将此配色方案中与 Theme 关联的具体颜色设为十六进制格式的指定颜色。 |
详细文档
get Concrete Color(theme)
返回此配色方案中与 Theme
关联的具体 Color
。
返回的颜色保证不是 Theme
的实例。
参数
名称 | 类型 | 说明 |
---|---|---|
theme | Theme | 要派生的具体颜色的主题颜色。 |
返回
Color
- 与此方案中的主题颜色类型对应的具体颜色。
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.googleapis.com/auth/presentations.currentonly
-
https://www.googleapis.com/auth/presentations
get Theme Colors()
返回配色方案中所有可能的主题颜色类型的列表。
返回
Theme
- 此方案中可能的主题颜色类型。
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.googleapis.com/auth/presentations.currentonly
-
https://www.googleapis.com/auth/presentations
set Concrete Color(type, color)
将此配色方案中与 Theme
关联的具体颜色设为指定颜色。
参数
名称 | 类型 | 说明 |
---|---|---|
type | Theme | 主题颜色类型。 |
color | Color | 要将主题颜色类型设置为的颜色。 |
返回
Color
- 此配色方案,用于链式调用。
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.googleapis.com/auth/presentations.currentonly
-
https://www.googleapis.com/auth/presentations
set Concrete Color(type, red, green, blue)
将与此配色方案中的 Theme
关联的具体颜色设为 RGB 格式的给定颜色。
参数
名称 | 类型 | 说明 |
---|---|---|
type | Theme | 主题颜色类型。 |
red | Integer | 要将主题颜色类型设置为的颜色的红色值(介于 0 和 255 之间)。 |
green | Integer | 要将主题颜色类型设置为的颜色的绿色值(介于 0 和 255 之间)。 |
blue | Integer | 要将主题颜色类型设置为的颜色的蓝色值(介于 0 和 255 之间)。 |
返回
Color
- 此配色方案,用于链式调用。
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.googleapis.com/auth/presentations.currentonly
-
https://www.googleapis.com/auth/presentations
set Concrete Color(type, hexColor)
将此配色方案中与 Theme
关联的具体颜色设为十六进制格式的指定颜色。
十六进制字符串必须采用“#RRGGBB”格式。
参数
名称 | 类型 | 说明 |
---|---|---|
type | Theme | 主题颜色类型。 |
hex | String | 要将主题颜色类型设置为的十六进制颜色,例如“#F304a7”。 |
返回
Color
- 此配色方案,用于链式调用。
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.googleapis.com/auth/presentations.currentonly
-
https://www.googleapis.com/auth/presentations