Adjustments
Commands for adjusting the colors.
Adjustment commands are applied on currently selected layer.
Color Adjustment Commands
Command | Value | Description |
---|---|---|
adjustment-b | -1.0..1.0 | Update yellow-blue balance |
adjustment-brightness | -1.0..1.0 | Update brightness |
adjustment-contrast | -1.0..1.0 | Update contrast |
adjustment-exposure | -1.0..1.0 | Update exposure |
adjustment-g | -1.0..1.0 | Update magenta-green balance |
adjustment-hue | -1.0..1.0 | Update hue angle |
adjustment-r | -1.0..1.0 | Update cyan-red balance |
adjustment-saturation | -1.0..1.0 | Update color saturation |
adjustment-temperature | -1.0..1.0 | Update color temperature |
adjustment-tint | -1.0..1.0 | Update color tint |
adjustment-vibrance | -1.0..1.0 | Update color vinrance |
cmd("adjustment-b:0.5")
Adjustment Brush Commands
Command | Value | Description |
---|---|---|
adjustmentbrush-mode | mode | Operatinh mode for adjustment brush (default = blur) |
adjustmentbrush-opacity | 0..100 | Change brush opacity. |
adjustmentbrush-pressure | 0..100 | Change brush pressure. |
adjustmentbrush-size | 1..999 | Change brush size. |
adjustmentbrush-space | 0..999 | Change brush spacing. |
Adjustment Brush modes
Here are the options you can pass for adjustmentbrush-mode
.
- blur
- sharpness
- darken
- lighten
- colder
- warmer
- desaturate
- saturate
- tint-minus
- tint-plus
// Select adjustment brush tool
cmd("tool-adjustmentbrush")
// Set adjustment brush to shaprness mode
cmd("adjustmentbrush-mode:sharpness")
// Set brush size to 100 (px)
cmd("adjustmentbrush-size:100")