generated from bitfocus/companion-module-template-js
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add action for Secondary Source * add feedback * add variable * add presets * show warning * use common colours * any secondary source feedback Co-authored-by: Carlos Valente <[email protected]> * bump: v4.4.0 --------- Co-authored-by: Carlos Valente <[email protected]>
- Loading branch information
Showing
14 changed files
with
364 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { combineRgb } from '@companion-module/base' | ||
|
||
export const White = combineRgb(255, 255, 255) | ||
export const Black = combineRgb(0, 0, 0) | ||
|
||
export const PlaybackGreen = combineRgb(51, 158, 78) | ||
export const PlaybackRed = combineRgb(228, 40, 30) | ||
export const PauseOrange = combineRgb(192, 86, 33) | ||
export const RollBlue = combineRgb(2, 116, 182) | ||
|
||
export const ActiveBlue = combineRgb(43, 90, 188) | ||
|
||
export const NormalGray = combineRgb(211, 211, 211) | ||
export const WarningOrange = combineRgb(255, 171, 51) | ||
export const DangerRed = combineRgb(237, 51, 51) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.