├── .github └── FUNDING.yml ├── LICENSE.md ├── README.md ├── com.inductiveautomation.perspective ├── page-config │ ├── config.json │ └── resource.json ├── session-props │ ├── props.json │ └── resource.json ├── session-scripts │ ├── data.bin │ └── resource.json ├── style-classes │ ├── color │ │ ├── amber │ │ │ ├── accent-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── base │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ └── lighten-5 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ ├── black │ │ │ ├── resource.json │ │ │ └── style.json │ │ ├── blue-grey │ │ │ ├── base │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ └── lighten-5 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ ├── blue │ │ │ ├── accent-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── base │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ └── lighten-5 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ ├── brown │ │ │ ├── base │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ └── lighten-5 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ ├── cyan │ │ │ ├── accent-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── base │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ └── lighten-5 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ ├── deep-orange │ │ │ ├── accent-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── base │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ └── lighten-5 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ ├── deep-purple │ │ │ ├── accent-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── base │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ └── lighten-5 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ ├── green │ │ │ ├── accent-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── base │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ └── lighten-5 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ ├── grey │ │ │ ├── base │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ └── lighten-5 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ ├── indigo │ │ │ ├── accent-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── base │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ └── lighten-5 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ ├── light-blue │ │ │ ├── accent-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── base │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ └── lighten-5 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ ├── light-green │ │ │ ├── accent-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── base │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ └── lighten-5 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ ├── lime │ │ │ ├── accent-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── base │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ └── lighten-5 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ ├── link │ │ │ ├── amber │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── blue │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── purple │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ └── red │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ ├── orange │ │ │ ├── accent-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── base │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ └── lighten-5 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ ├── pink │ │ │ ├── accent-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── base │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ └── lighten-5 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ ├── purple │ │ │ ├── accent-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── base │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ └── lighten-5 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ ├── red │ │ │ ├── accent-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── base │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ └── lighten-5 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ ├── teal │ │ │ ├── accent-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── accent-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── base │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── darken-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-1 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-2 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-3 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── lighten-4 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ └── lighten-5 │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ ├── text │ │ │ ├── black │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── grey │ │ │ │ ├── base │ │ │ │ │ ├── resource.json │ │ │ │ │ └── style.json │ │ │ │ ├── darken-1 │ │ │ │ │ ├── resource.json │ │ │ │ │ └── style.json │ │ │ │ ├── darken-2 │ │ │ │ │ ├── resource.json │ │ │ │ │ └── style.json │ │ │ │ ├── darken-3 │ │ │ │ │ ├── resource.json │ │ │ │ │ └── style.json │ │ │ │ ├── darken-4 │ │ │ │ │ ├── resource.json │ │ │ │ │ └── style.json │ │ │ │ ├── lighten-1 │ │ │ │ │ ├── resource.json │ │ │ │ │ └── style.json │ │ │ │ ├── lighten-2 │ │ │ │ │ ├── resource.json │ │ │ │ │ └── style.json │ │ │ │ ├── lighten-3 │ │ │ │ │ ├── resource.json │ │ │ │ │ └── style.json │ │ │ │ ├── lighten-4 │ │ │ │ │ ├── resource.json │ │ │ │ │ └── style.json │ │ │ │ └── lighten-5 │ │ │ │ │ ├── resource.json │ │ │ │ │ └── style.json │ │ │ ├── red │ │ │ │ ├── accent-1 │ │ │ │ │ ├── resource.json │ │ │ │ │ └── style.json │ │ │ │ ├── accent-2 │ │ │ │ │ ├── resource.json │ │ │ │ │ └── style.json │ │ │ │ ├── accent-3 │ │ │ │ │ ├── resource.json │ │ │ │ │ └── style.json │ │ │ │ ├── accent-4 │ │ │ │ │ ├── resource.json │ │ │ │ │ └── style.json │ │ │ │ ├── base │ │ │ │ │ ├── resource.json │ │ │ │ │ └── style.json │ │ │ │ ├── darken-1 │ │ │ │ │ ├── resource.json │ │ │ │ │ └── style.json │ │ │ │ ├── darken-2 │ │ │ │ │ ├── resource.json │ │ │ │ │ └── style.json │ │ │ │ ├── darken-3 │ │ │ │ │ ├── resource.json │ │ │ │ │ └── style.json │ │ │ │ ├── darken-4 │ │ │ │ │ ├── resource.json │ │ │ │ │ └── style.json │ │ │ │ ├── lighten-1 │ │ │ │ │ ├── resource.json │ │ │ │ │ └── style.json │ │ │ │ ├── lighten-2 │ │ │ │ │ ├── resource.json │ │ │ │ │ └── style.json │ │ │ │ ├── lighten-3 │ │ │ │ │ ├── resource.json │ │ │ │ │ └── style.json │ │ │ │ ├── lighten-4 │ │ │ │ │ ├── resource.json │ │ │ │ │ └── style.json │ │ │ │ └── lighten-5 │ │ │ │ │ ├── resource.json │ │ │ │ │ └── style.json │ │ │ ├── transparent │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ └── white │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ ├── transparent │ │ │ ├── resource.json │ │ │ └── style.json │ │ ├── white │ │ │ ├── resource.json │ │ │ └── style.json │ │ └── yellow │ │ │ ├── accent-1 │ │ │ ├── resource.json │ │ │ └── style.json │ │ │ ├── accent-2 │ │ │ ├── resource.json │ │ │ └── style.json │ │ │ ├── accent-3 │ │ │ ├── resource.json │ │ │ └── style.json │ │ │ ├── accent-4 │ │ │ ├── resource.json │ │ │ └── style.json │ │ │ ├── base │ │ │ ├── resource.json │ │ │ └── style.json │ │ │ ├── darken-1 │ │ │ ├── resource.json │ │ │ └── style.json │ │ │ ├── darken-2 │ │ │ ├── resource.json │ │ │ └── style.json │ │ │ ├── darken-3 │ │ │ ├── resource.json │ │ │ └── style.json │ │ │ ├── darken-4 │ │ │ ├── resource.json │ │ │ └── style.json │ │ │ ├── lighten-1 │ │ │ ├── resource.json │ │ │ └── style.json │ │ │ ├── lighten-2 │ │ │ ├── resource.json │ │ │ └── style.json │ │ │ ├── lighten-3 │ │ │ ├── resource.json │ │ │ └── style.json │ │ │ ├── lighten-4 │ │ │ ├── resource.json │ │ │ └── style.json │ │ │ └── lighten-5 │ │ │ ├── resource.json │ │ │ └── style.json │ ├── components │ │ ├── button │ │ │ ├── base │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ └── disabled │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ └── form │ │ │ └── input │ │ │ ├── base │ │ │ ├── resource.json │ │ │ └── style.json │ │ │ └── label │ │ │ └── shake │ │ │ ├── resource.json │ │ │ └── style.json │ ├── rounded │ │ ├── b │ │ │ ├── lg │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── md │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── none │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── sm │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ └── xl │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ ├── circle │ │ │ ├── resource.json │ │ │ └── style.json │ │ ├── lg │ │ │ ├── resource.json │ │ │ └── style.json │ │ ├── md │ │ │ ├── resource.json │ │ │ └── style.json │ │ ├── none │ │ │ ├── resource.json │ │ │ └── style.json │ │ ├── pill │ │ │ ├── resource.json │ │ │ └── style.json │ │ ├── sm │ │ │ ├── resource.json │ │ │ └── style.json │ │ ├── t │ │ │ ├── lg │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── md │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── none │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ ├── sm │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ └── xl │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ └── xl │ │ │ ├── resource.json │ │ │ └── style.json │ ├── typo │ │ ├── center │ │ │ ├── resource.json │ │ │ └── style.json │ │ ├── font │ │ │ ├── basic │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ │ └── oswald │ │ │ │ ├── resource.json │ │ │ │ └── style.json │ │ ├── h1 │ │ │ ├── resource.json │ │ │ └── style.json │ │ ├── h2 │ │ │ ├── resource.json │ │ │ └── style.json │ │ ├── h3 │ │ │ ├── resource.json │ │ │ └── style.json │ │ ├── h4 │ │ │ ├── resource.json │ │ │ └── style.json │ │ ├── h5 │ │ │ ├── resource.json │ │ │ └── style.json │ │ ├── h6 │ │ │ ├── resource.json │ │ │ └── style.json │ │ ├── subtitle-1 │ │ │ ├── resource.json │ │ │ └── style.json │ │ ├── subtitle-2 │ │ │ ├── resource.json │ │ │ └── style.json │ │ └── truncate │ │ │ ├── resource.json │ │ │ └── style.json │ └── util │ │ ├── elevation-0 │ │ ├── resource.json │ │ └── style.json │ │ ├── elevation-1 │ │ ├── resource.json │ │ └── style.json │ │ ├── elevation-10 │ │ ├── resource.json │ │ └── style.json │ │ ├── elevation-11 │ │ ├── resource.json │ │ └── style.json │ │ ├── elevation-12 │ │ ├── resource.json │ │ └── style.json │ │ ├── elevation-13 │ │ ├── resource.json │ │ └── style.json │ │ ├── elevation-14 │ │ ├── resource.json │ │ └── style.json │ │ ├── elevation-15 │ │ ├── resource.json │ │ └── style.json │ │ ├── elevation-16 │ │ ├── resource.json │ │ └── style.json │ │ ├── elevation-17 │ │ ├── resource.json │ │ └── style.json │ │ ├── elevation-18 │ │ ├── resource.json │ │ └── style.json │ │ ├── elevation-19 │ │ ├── resource.json │ │ └── style.json │ │ ├── elevation-2 │ │ ├── resource.json │ │ └── style.json │ │ ├── elevation-20 │ │ ├── resource.json │ │ └── style.json │ │ ├── elevation-21 │ │ ├── resource.json │ │ └── style.json │ │ ├── elevation-22 │ │ ├── resource.json │ │ └── style.json │ │ ├── elevation-23 │ │ ├── resource.json │ │ └── style.json │ │ ├── elevation-24 │ │ ├── resource.json │ │ └── style.json │ │ ├── elevation-3 │ │ ├── resource.json │ │ └── style.json │ │ ├── elevation-4 │ │ ├── resource.json │ │ └── style.json │ │ ├── elevation-5 │ │ ├── resource.json │ │ └── style.json │ │ ├── elevation-6 │ │ ├── resource.json │ │ └── style.json │ │ ├── elevation-7 │ │ ├── resource.json │ │ └── style.json │ │ ├── elevation-8 │ │ ├── resource.json │ │ └── style.json │ │ ├── elevation-9 │ │ ├── resource.json │ │ └── style.json │ │ ├── ma-0 │ │ ├── resource.json │ │ └── style.json │ │ ├── ma-1 │ │ ├── resource.json │ │ └── style.json │ │ ├── ma-2 │ │ ├── resource.json │ │ └── style.json │ │ ├── ma-3 │ │ ├── resource.json │ │ └── style.json │ │ ├── ma-4 │ │ ├── resource.json │ │ └── style.json │ │ ├── ma-5 │ │ ├── resource.json │ │ └── style.json │ │ ├── mb-0 │ │ ├── resource.json │ │ └── style.json │ │ ├── mb-1 │ │ ├── resource.json │ │ └── style.json │ │ ├── mb-2 │ │ ├── resource.json │ │ └── style.json │ │ ├── mb-3 │ │ ├── resource.json │ │ └── style.json │ │ ├── mb-4 │ │ ├── resource.json │ │ └── style.json │ │ ├── mb-5 │ │ ├── resource.json │ │ └── style.json │ │ ├── ml-0 │ │ ├── resource.json │ │ └── style.json │ │ ├── ml-1 │ │ ├── resource.json │ │ └── style.json │ │ ├── ml-2 │ │ ├── resource.json │ │ └── style.json │ │ ├── ml-3 │ │ ├── resource.json │ │ └── style.json │ │ ├── ml-4 │ │ ├── resource.json │ │ └── style.json │ │ ├── ml-5 │ │ ├── resource.json │ │ └── style.json │ │ ├── mr-0 │ │ ├── resource.json │ │ └── style.json │ │ ├── mr-1 │ │ ├── resource.json │ │ └── style.json │ │ ├── mr-2 │ │ ├── resource.json │ │ └── style.json │ │ ├── mr-3 │ │ ├── resource.json │ │ └── style.json │ │ ├── mr-4 │ │ ├── resource.json │ │ └── style.json │ │ ├── mr-5 │ │ ├── resource.json │ │ └── style.json │ │ ├── mt-0 │ │ ├── resource.json │ │ └── style.json │ │ ├── mt-1 │ │ ├── resource.json │ │ └── style.json │ │ ├── mt-2 │ │ ├── resource.json │ │ └── style.json │ │ ├── mt-3 │ │ ├── resource.json │ │ └── style.json │ │ ├── mt-4 │ │ ├── resource.json │ │ └── style.json │ │ ├── mt-5 │ │ ├── resource.json │ │ └── style.json │ │ ├── mx-0 │ │ ├── resource.json │ │ └── style.json │ │ ├── mx-1 │ │ ├── resource.json │ │ └── style.json │ │ ├── mx-2 │ │ ├── resource.json │ │ └── style.json │ │ ├── mx-3 │ │ ├── resource.json │ │ └── style.json │ │ ├── mx-4 │ │ ├── resource.json │ │ └── style.json │ │ ├── mx-5 │ │ ├── resource.json │ │ └── style.json │ │ ├── my-0 │ │ ├── resource.json │ │ └── style.json │ │ ├── my-1 │ │ ├── resource.json │ │ └── style.json │ │ ├── my-2 │ │ ├── resource.json │ │ └── style.json │ │ ├── my-3 │ │ ├── resource.json │ │ └── style.json │ │ ├── my-4 │ │ ├── resource.json │ │ └── style.json │ │ ├── my-5 │ │ ├── resource.json │ │ └── style.json │ │ ├── my-6 │ │ ├── resource.json │ │ └── style.json │ │ ├── pa-0 │ │ ├── resource.json │ │ └── style.json │ │ ├── pa-1 │ │ ├── resource.json │ │ └── style.json │ │ ├── pa-2 │ │ ├── resource.json │ │ └── style.json │ │ ├── pa-3 │ │ ├── resource.json │ │ └── style.json │ │ ├── pa-4 │ │ ├── resource.json │ │ └── style.json │ │ ├── pa-5 │ │ ├── resource.json │ │ └── style.json │ │ ├── pb-0 │ │ ├── resource.json │ │ └── style.json │ │ ├── pb-1 │ │ ├── resource.json │ │ └── style.json │ │ ├── pb-2 │ │ ├── resource.json │ │ └── style.json │ │ ├── pb-3 │ │ ├── resource.json │ │ └── style.json │ │ ├── pb-4 │ │ ├── resource.json │ │ └── style.json │ │ ├── pb-5 │ │ ├── resource.json │ │ └── style.json │ │ ├── pl-0 │ │ ├── resource.json │ │ └── style.json │ │ ├── pl-1 │ │ ├── resource.json │ │ └── style.json │ │ ├── pl-2 │ │ ├── resource.json │ │ └── style.json │ │ ├── pl-3 │ │ ├── resource.json │ │ └── style.json │ │ ├── pl-4 │ │ ├── resource.json │ │ └── style.json │ │ ├── pl-5 │ │ ├── resource.json │ │ └── style.json │ │ ├── pr-0 │ │ ├── resource.json │ │ └── style.json │ │ ├── pr-1 │ │ ├── resource.json │ │ └── style.json │ │ ├── pr-2 │ │ ├── resource.json │ │ └── style.json │ │ ├── pr-3 │ │ ├── resource.json │ │ └── style.json │ │ ├── pr-4 │ │ ├── resource.json │ │ └── style.json │ │ ├── pr-5 │ │ ├── resource.json │ │ └── style.json │ │ ├── pt-0 │ │ ├── resource.json │ │ └── style.json │ │ ├── pt-1 │ │ ├── resource.json │ │ └── style.json │ │ ├── pt-2 │ │ ├── resource.json │ │ └── style.json │ │ ├── pt-3 │ │ ├── resource.json │ │ └── style.json │ │ ├── pt-4 │ │ ├── resource.json │ │ └── style.json │ │ ├── pt-5 │ │ ├── resource.json │ │ └── style.json │ │ ├── px-0 │ │ ├── resource.json │ │ └── style.json │ │ ├── px-1 │ │ ├── resource.json │ │ └── style.json │ │ ├── px-2 │ │ ├── resource.json │ │ └── style.json │ │ ├── px-3 │ │ ├── resource.json │ │ └── style.json │ │ ├── px-4 │ │ ├── resource.json │ │ └── style.json │ │ ├── px-5 │ │ ├── resource.json │ │ └── style.json │ │ ├── py-0 │ │ ├── resource.json │ │ └── style.json │ │ ├── py-1 │ │ ├── resource.json │ │ └── style.json │ │ ├── py-2 │ │ ├── resource.json │ │ └── style.json │ │ ├── py-3 │ │ ├── resource.json │ │ └── style.json │ │ ├── py-4 │ │ ├── resource.json │ │ └── style.json │ │ └── py-5 │ │ ├── resource.json │ │ └── style.json └── views │ └── Components │ ├── Button │ ├── Basic │ │ ├── resource.json │ │ ├── thumbnail.png │ │ └── view.json │ ├── Combined │ │ ├── resource.json │ │ ├── thumbnail.png │ │ └── view.json │ └── One-Shot │ │ ├── resource.json │ │ ├── thumbnail.png │ │ └── view.json │ ├── Charts │ └── Sparkline │ │ ├── resource.json │ │ ├── thumbnail.png │ │ └── view.json │ ├── Expansion Panel │ ├── Panel │ │ ├── resource.json │ │ ├── thumbnail.png │ │ └── view.json │ └── Panels │ │ ├── resource.json │ │ ├── thumbnail.png │ │ └── view.json │ ├── Form │ └── Numeric Input │ │ ├── resource.json │ │ ├── thumbnail.png │ │ └── view.json │ ├── Gauge │ └── Circular │ │ ├── resource.json │ │ ├── thumbnail.png │ │ └── view.json │ ├── Pipe │ ├── Bend │ │ ├── Combined │ │ │ ├── resource.json │ │ │ ├── thumbnail.png │ │ │ └── view.json │ │ ├── Realistic │ │ │ ├── resource.json │ │ │ ├── thumbnail.png │ │ │ └── view.json │ │ └── Simple │ │ │ ├── resource.json │ │ │ ├── thumbnail.png │ │ │ └── view.json │ ├── Combined │ │ ├── resource.json │ │ ├── thumbnail.png │ │ └── view.json │ ├── Realistic │ │ ├── resource.json │ │ ├── thumbnail.png │ │ └── view.json │ └── Simple │ │ ├── resource.json │ │ ├── thumbnail.png │ │ └── view.json │ ├── Pump │ └── Symbol │ │ ├── Combined │ │ ├── resource.json │ │ ├── thumbnail.png │ │ └── view.json │ │ ├── Realistic │ │ ├── resource.json │ │ ├── thumbnail.png │ │ └── view.json │ │ └── Simple │ │ ├── resource.json │ │ ├── thumbnail.png │ │ └── view.json │ └── Valve │ └── Symbol │ ├── Combined │ ├── resource.json │ ├── thumbnail.png │ └── view.json │ ├── Realistic │ ├── resource.json │ ├── thumbnail.png │ └── view.json │ └── Simple │ ├── resource.json │ ├── thumbnail.png │ └── view.json ├── com.inductiveautomation.vision └── client-tags │ ├── data.bin │ └── resource.json ├── fonts ├── Basic │ ├── Basic-Regular.ttf │ └── OFL.txt ├── Lobster │ ├── Lobster-Regular.ttf │ └── OFL.txt └── Oswald │ ├── OFL.txt │ ├── Oswald-VariableFont_wght.ttf │ ├── README.txt │ └── static │ ├── Oswald-Bold.ttf │ ├── Oswald-ExtraLight.ttf │ ├── Oswald-Light.ttf │ ├── Oswald-Medium.ttf │ ├── Oswald-Regular.ttf │ └── Oswald-SemiBold.ttf ├── ignition ├── global-props │ ├── data.bin │ └── resource.json └── script-python │ └── theme │ ├── code.py │ └── resource.json ├── images └── valve.svg ├── project.json └── theme ├── jar.css └── jar ├── app ├── dock.css ├── index.css ├── popup.css └── quality.css ├── common ├── alarm-table.css ├── button.css ├── checkbox.css ├── component-modal.css ├── container.css ├── context-menu.css ├── date-range-picker.css ├── date-range-time-picker.css ├── dropdown.css ├── index.css ├── input-field.css ├── pager.css ├── progress-bar.css ├── radio.css ├── realtime-or-historical-range-selector.css ├── realtime-or-historical-range.css ├── select.css ├── slider.css ├── table.css ├── tag-browser.css ├── text-area.css ├── time-input.css ├── toggle-switch.css └── view.css ├── designer ├── index.css └── selection.css ├── fonts.css ├── globals.css ├── index.css ├── palette ├── accordion.css ├── alarm-journal-table.css ├── alarm-status-table.css ├── checkbox.css ├── column-container.css ├── cylindrical-tank.css ├── dashboard.css ├── date-time.css ├── file-upload.css ├── horizontal-menu.css ├── index.css ├── led.css ├── linear-scale.css ├── menu-tree.css ├── moving-analog-indicator.css ├── multi-state-button.css ├── numeric-entry-field.css ├── one-shot-button.css ├── password-field.css ├── power-chart.css ├── radio-group.css ├── report-viewer.css ├── signature-pad.css ├── sparkline.css ├── symbols.css ├── tab-container.css ├── table.css ├── thermometer.css ├── toggle-switch.css ├── tree.css └── video-player.css └── variables.css /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [joyja] 4 | patreon: jarautomation 5 | -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/page-config/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "pages": {}, 3 | "sharedDocks": {} 4 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/page-config/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "config.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-02-08T17:26:48Z" 13 | }, 14 | "lastModificationSignature": "ba16aea6e2f1815e542ae447035ef4301716083ab6a05d2b6aae09bd2ffa83c5" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/session-props/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "props.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-02-15T18:55:05Z" 13 | }, 14 | "lastModificationSignature": "2bab63866c81c952ee52b03419b94ef7a1dc7cfb375c7a81fa74e75235991819" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/session-scripts/data.bin: -------------------------------------------------------------------------------- 1 | {"onBarcodeDataReceived":"\t","onBluetoothReceived":"\t","onAccelerometerDataReceived":"\t","onNdefDataReceived":"\t"} -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/session-scripts/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "data.bin" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-02-16T18:16:01Z" 13 | }, 14 | "lastModificationSignature": "320b4f4469dd51bf4f0ab8cc896dda9a5c53a8dd8adce2053bd07604bd5cebc5" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/amber/accent-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--amber-accent-1)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/amber/accent-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--amber-accent-2)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/amber/accent-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--amber-accent-3)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/amber/accent-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--amber-accent-4)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/amber/base/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--amber-base)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/amber/darken-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--amber-darken-1)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/amber/darken-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--amber-darken-2)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/amber/darken-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--amber-darken-3)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/amber/darken-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--amber-darken-4)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/amber/lighten-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--amber-lighten-1)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/amber/lighten-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--amber-lighten-2)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/amber/lighten-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--amber-lighten-3)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/amber/lighten-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--amber-lighten-4)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/amber/lighten-5/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--amber-lighten-5)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/black/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2020-12-05T17:37:48Z" 13 | }, 14 | "lastModificationSignature": "7ef91f93eca9bd6cc3e46f65396ad336d3ab720e8bc35605ce50d0d7766e0b37" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/black/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#000000" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/blue-grey/base/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--blue-grey-base)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/blue-grey/darken-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--blue-grey-darken-1)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/blue-grey/darken-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--blue-grey-darken-2)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/blue-grey/darken-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--blue-grey-darken-3)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/blue-grey/darken-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--blue-grey-darken-4)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/blue-grey/lighten-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--blue-grey-lighten-1)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/blue-grey/lighten-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--blue-grey-lighten-2)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/blue-grey/lighten-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--blue-grey-lighten-3)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/blue-grey/lighten-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--blue-grey-lighten-4)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/blue-grey/lighten-5/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--blue-grey-lighten-5)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/blue/accent-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--blue-accent-1)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/blue/accent-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--blue-accent-2)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/blue/accent-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--blue-accent-3)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/blue/accent-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--blue-accent-4)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/blue/base/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--blue-base)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/blue/darken-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--blue-darken-1)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/blue/darken-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--blue-darken-2)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/blue/darken-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--blue-darken-3)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/blue/darken-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--blue-darken-4)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/blue/lighten-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--blue-lighten-1)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/blue/lighten-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--blue-lighten-2)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/blue/lighten-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--blue-lighten-3)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/blue/lighten-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--blue-lighten-4)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/blue/lighten-5/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--blue-lighten-5)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/brown/base/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--brown-base)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/brown/darken-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--brown-darken-1)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/brown/darken-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--brown-darken-2)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/brown/darken-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--brown-darken-3)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/brown/darken-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--brown-darken-4)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/brown/lighten-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--brown-lighten-1)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/brown/lighten-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--brown-lighten-2)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/brown/lighten-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--brown-lighten-3)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/brown/lighten-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--brown-lighten-4)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/brown/lighten-5/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--brown-lighten-5)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/cyan/accent-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--cyan-accent-1)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/cyan/accent-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--cyan-accent-2)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/cyan/accent-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--cyan-accent-3)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/cyan/accent-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--cyan-accent-4)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/cyan/base/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--cyan-base)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/cyan/darken-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--cyan-darken-1)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/cyan/darken-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--cyan-darken-2)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/cyan/darken-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--cyan-darken-3)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/cyan/darken-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--cyan-darken-4)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/cyan/lighten-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--cyan-lighten-1)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/cyan/lighten-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--cyan-lighten-2)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/cyan/lighten-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--cyan-lighten-3)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/cyan/lighten-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--cyan-lighten-4)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/cyan/lighten-5/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--cyan-lighten-5)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/deep-orange/accent-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--deep-orange-accent-1)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/deep-orange/accent-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--deep-orange-accent-2)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/deep-orange/accent-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--deep-orange-accent-3)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/deep-orange/accent-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--deep-orange-accent-4)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/deep-orange/base/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--deep-orange-base)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/deep-orange/darken-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--deep-orange-darken-1)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/deep-orange/darken-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--deep-orange-darken-2)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/deep-orange/darken-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--deep-orange-darken-3)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/deep-orange/darken-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--deep-orange-darken-4)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/deep-orange/lighten-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--deep-orange-lighten-1)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/deep-orange/lighten-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--deep-orange-lighten-2)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/deep-orange/lighten-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--deep-orange-lighten-3)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/deep-orange/lighten-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--deep-orange-lighten-4)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/deep-orange/lighten-5/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--deep-orange-lighten-5)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/deep-purple/accent-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--deep-purple-accent-1)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/deep-purple/accent-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--deep-purple-accent-2)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/deep-purple/accent-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--deep-purple-accent-3)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/deep-purple/accent-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--deep-purple-accent-4)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/deep-purple/base/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--deep-purple-base)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/deep-purple/darken-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--deep-purple-darken-1)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/deep-purple/darken-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--deep-purple-darken-2)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/deep-purple/darken-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--deep-purple-darken-3)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/deep-purple/darken-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--deep-purple-darken-4)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/deep-purple/lighten-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--deep-purple-lighten-1)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/deep-purple/lighten-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--deep-purple-lighten-2)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/deep-purple/lighten-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--deep-purple-lighten-3)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/deep-purple/lighten-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--deep-purple-lighten-4)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/deep-purple/lighten-5/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--deep-purple-lighten-5)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/green/accent-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--green-accent-1)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/green/accent-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--green-accent-2)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/green/accent-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--green-accent-3)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/green/accent-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--green-accent-4)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/green/base/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--green-base)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/green/darken-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--green-darken-1)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/green/darken-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--green-darken-2)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/green/darken-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--green-darken-3)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/green/darken-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--green-darken-4)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/green/lighten-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--green-lighten-1)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/green/lighten-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--green-lighten-2)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/green/lighten-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--green-lighten-3)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/green/lighten-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--green-lighten-4)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/green/lighten-5/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--green-lighten-5)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/grey/base/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--grey-base)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/grey/darken-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--grey-darken-1)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/grey/darken-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--grey-darken-2)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/grey/darken-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--grey-darken-3)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/grey/darken-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--grey-darken-4)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/grey/lighten-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--grey-lighten-1)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/grey/lighten-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--grey-lighten-2)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/grey/lighten-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--grey-lighten-3)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/grey/lighten-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--grey-lighten-4)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/grey/lighten-5/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "var(--grey-lighten-5)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/indigo/accent-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#8C9EFF" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/indigo/accent-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#536DFE" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/indigo/accent-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#3D5AFE" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/indigo/accent-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#304FFE" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/indigo/base/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#3F51B5" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/indigo/darken-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#3949AB" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/indigo/darken-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#303F9F" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/indigo/darken-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#283593" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/indigo/darken-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#1A237E" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/indigo/lighten-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#5C6BC0" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/indigo/lighten-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#7986CB" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/indigo/lighten-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#9FA8DA" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/indigo/lighten-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#C5CAE9" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/indigo/lighten-5/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#E8EAF6" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/light-blue/accent-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#80D8FF" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/light-blue/accent-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#40C4FF" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/light-blue/accent-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#00B0FF" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/light-blue/accent-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#0091EA" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/light-blue/base/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#03A9F4" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/light-blue/darken-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#039BE5" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/light-blue/darken-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#0288D1" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/light-blue/darken-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#0277BD" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/light-blue/darken-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#01579B" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/light-blue/lighten-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#29B6F6" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/light-blue/lighten-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#4FC3F7" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/light-blue/lighten-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#81D4FA" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/light-blue/lighten-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#B3E5FC" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/light-blue/lighten-5/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#E1F5FE" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/light-green/accent-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#CCFF90" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/light-green/accent-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#B2FF59" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/light-green/accent-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#76FF03" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/light-green/accent-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#64DD17" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/light-green/base/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#8BC34A" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/light-green/darken-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#7CB342" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/light-green/darken-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#689F38" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/light-green/darken-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#558B2F" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/light-green/darken-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#33691E" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/light-green/lighten-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#9CCC65" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/light-green/lighten-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#AED581" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/light-green/lighten-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#C5E1A5" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/light-green/lighten-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#DCEDC8" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/light-green/lighten-5/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#F1F8E9" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/lime/accent-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#F4FF81" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/lime/accent-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#EEFF41" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/lime/accent-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#C6FF00" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/lime/accent-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#AEEA00" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/lime/base/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#CDDC39" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/lime/darken-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#C0CA33" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/lime/darken-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#AFB42B" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/lime/darken-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#9E9D24" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/lime/darken-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#827717" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/lime/lighten-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#D4E157" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/lime/lighten-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#DCE775" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/lime/lighten-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#E6EE9C" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/lime/lighten-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#F0F4C3" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/lime/lighten-5/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#F9FBE7" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/link/amber/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": {} 4 | }, 5 | "variants": [ 6 | { 7 | "pseudo": "link", 8 | "style": { 9 | "color": "var(--amber-base)" 10 | } 11 | }, 12 | { 13 | "pseudo": "visited", 14 | "style": { 15 | "color": "var(--amber-darken-4)" 16 | } 17 | } 18 | ] 19 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/link/blue/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": {} 4 | }, 5 | "variants": [ 6 | { 7 | "pseudo": "link", 8 | "style": { 9 | "color": "var(--blue-base)" 10 | } 11 | }, 12 | { 13 | "pseudo": "visited", 14 | "style": { 15 | "color": "var(--blue-darken-4)" 16 | } 17 | } 18 | ] 19 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/link/purple/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": {} 4 | }, 5 | "variants": [ 6 | { 7 | "pseudo": "link", 8 | "style": { 9 | "color": "var(--purple-base)" 10 | } 11 | }, 12 | { 13 | "pseudo": "visited", 14 | "style": { 15 | "color": "var(--purple-darken-4)" 16 | } 17 | } 18 | ] 19 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/link/red/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": {} 4 | }, 5 | "variants": [ 6 | { 7 | "pseudo": "link", 8 | "style": { 9 | "color": "var(--red-base)" 10 | } 11 | }, 12 | { 13 | "pseudo": "visited", 14 | "style": { 15 | "color": "var(--red-darken-4)" 16 | } 17 | } 18 | ] 19 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/orange/accent-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#FFD180" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/orange/accent-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#FFAB40" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/orange/accent-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#FF9100" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/orange/accent-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#FF6D00" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/orange/base/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#FF9800" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/orange/darken-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#FB8C00" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/orange/darken-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#F57C00" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/orange/darken-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#EF6C00" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/orange/darken-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#E65100" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/orange/lighten-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#FFA726" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/orange/lighten-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#FFB74D" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/orange/lighten-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#FFCC80" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/orange/lighten-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#FFE0B2" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/orange/lighten-5/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#FFF3E0" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/pink/accent-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#FF80AB" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/pink/accent-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#FF4081" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/pink/accent-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#F50057" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/pink/accent-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#C51162" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/pink/base/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#E91E63" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/pink/darken-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#D81B60" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/pink/darken-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#C2185B" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/pink/darken-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#AD1457" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/pink/darken-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#880E4F" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/pink/lighten-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#EC407A" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/pink/lighten-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#F06292" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/pink/lighten-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#F48FB1" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/pink/lighten-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#F8BBD0" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/pink/lighten-5/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#FCE4EC" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/purple/accent-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#EA80FC" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/purple/accent-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#E040FB" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/purple/accent-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#D500F9" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/purple/accent-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#AA00FF" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/purple/base/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#9C27B0" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/purple/darken-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#8E24AA" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/purple/darken-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#7B1FA2" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/purple/darken-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#6A1B9A" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/purple/darken-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#4A148C" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/purple/lighten-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#AB47BC" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/purple/lighten-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#BA68C8" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/purple/lighten-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#CE93D8" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/purple/lighten-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#E1BEE7" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/purple/lighten-5/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#F3E5F5" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/red/accent-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#FF8A80" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/red/accent-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#FF5252" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/red/accent-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#FF1744" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/red/accent-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#D50000" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/red/base/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#F44336" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/red/darken-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#E53935" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/red/darken-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#D32F2F" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/red/darken-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#C62828" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/red/darken-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#B71C1C" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/red/lighten-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#EF5350" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/red/lighten-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#E57373" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/red/lighten-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#EF9A9A" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/red/lighten-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#FFCDD2" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/red/lighten-5/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#FFEBEE" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/teal/accent-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#A7FFEB" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/teal/accent-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#64FFDA" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/teal/accent-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#1DE9B6" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/teal/accent-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#00BFA5" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/teal/base/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#009688" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/teal/darken-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#00897B" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/teal/darken-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#00796B" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/teal/darken-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#00695C" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/teal/darken-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#004D40" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/teal/lighten-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#26A69A" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/teal/lighten-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#4DB6AC" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/teal/lighten-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#80CBC4" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/teal/lighten-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#B2DFDB" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/teal/lighten-5/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#E0F2F1" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/text/black/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "color": "#000000" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/text/grey/base/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "color": "var(--grey-base)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/text/grey/darken-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "color": "var(--grey-darken-1)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/text/grey/darken-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "color": "var(--grey-darken-2)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/text/grey/darken-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "color": "var(--grey-darken-3)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/text/grey/darken-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "color": "var(--grey-darken-4)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/text/grey/lighten-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "color": "var(--grey-lighten-1)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/text/grey/lighten-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "color": "var(--grey-lighten-2)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/text/grey/lighten-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "color": "var(--grey-lighten-3)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/text/grey/lighten-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "color": "var(--grey-lighten-4)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/text/grey/lighten-5/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "color": "var(--grey-lighten-5)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/text/red/accent-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "color": "var(--red-accent-1)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/text/red/accent-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "color": "var(--red-accent-2)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/text/red/accent-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#FF1744", 5 | "color": "var(--red-accent-3)" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/text/red/accent-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#D50000", 5 | "color": "var(--red-accent-4)" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/text/red/base/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "color": "var(--red-base)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/text/red/darken-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "color": "var(--red-darken-1)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/text/red/darken-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "color": "var(--red-darken-2)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/text/red/darken-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "color": "var(--red-darken-3)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/text/red/darken-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "color": "var(--red-darken-4)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/text/red/lighten-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#EF5350", 5 | "color": "var(--red-lighten-1)" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/text/red/lighten-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "color": "var(--red-lighten-2)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/text/red/lighten-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "color": "var(--red-lighten-3)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/text/red/lighten-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "color": "var(--red-lighten-4)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/text/red/lighten-5/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "color": "var(--red-lighten-5)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/text/transparent/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "color": "#00000000" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/text/white/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "color": "#ffffff" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/transparent/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#00000000" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/white/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2020-12-05T17:39:51Z" 13 | }, 14 | "lastModificationSignature": "056ce4724f3b9ecaea7738c41229247dacf40ae2c6694552b6b8f034f005c582" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/white/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#ffffff" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/yellow/accent-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#FFFF8D" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/yellow/accent-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#FFFF00" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/yellow/accent-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#FFEA00" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/yellow/accent-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#FFD600" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/yellow/base/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#FFEB3B" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/yellow/darken-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#FDD835" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/yellow/darken-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#FBC02D" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/yellow/darken-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#F9A825" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/yellow/darken-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#F57F17" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/yellow/lighten-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#FFEE58" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/yellow/lighten-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#FFF176" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/yellow/lighten-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#FFF59D" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/yellow/lighten-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#FFF9C4" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/color/yellow/lighten-5/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "backgroundColor": "#FFFDE7" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/rounded/b/lg/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "borderBottomLeftRadius": "8px", 5 | "borderBottomRightRadius": "8px" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/rounded/b/md/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "borderBottomLeftRadius": "4px", 5 | "borderBottomRightRadius": "4px" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/rounded/b/none/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "borderBottomLeftRadius": "0px", 5 | "borderBottomRightRadius": "0px" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/rounded/b/sm/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "borderBottomLeftRadius": "2px", 5 | "borderBottomRightRadius": "2px" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/rounded/b/xl/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "borderBottomLeftRadius": "24px", 5 | "borderBottomRightRadius": "24px" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/rounded/circle/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "borderTopLeftRadius": "50%", 5 | "borderTopRightRadius": "50%", 6 | "borderBottomLeftRadius": "50%", 7 | "borderBottomRightRadius": "50%" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/rounded/lg/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-02T19:17:29Z" 13 | }, 14 | "lastModificationSignature": "f2b04e7bfb56c15ff80245f3a7b265b96fedc988a63c51e6558e05ba7848d169" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/rounded/lg/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "borderTopLeftRadius": "8px", 5 | "borderTopRightRadius": "8px", 6 | "borderBottomLeftRadius": "8px", 7 | "borderBottomRightRadius": "8px" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/rounded/md/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-02T19:20:08Z" 13 | }, 14 | "lastModificationSignature": "55b7d2bb50c2b0dc942b9d2b1ec0f6e87c306923d6c3e90c6ba38efe9afccf75" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/rounded/md/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "borderTopLeftRadius": "4px", 5 | "borderTopRightRadius": "4px", 6 | "borderBottomLeftRadius": "4px", 7 | "borderBottomRightRadius": "4px" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/rounded/none/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "borderTopLeftRadius": "0px", 5 | "borderTopRightRadius": "0px", 6 | "borderBottomLeftRadius": "0px", 7 | "borderBottomRightRadius": "0px" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/rounded/pill/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "borderTopLeftRadius": "9999px", 5 | "borderTopRightRadius": "9999px", 6 | "borderBottomLeftRadius": "9999px", 7 | "borderBottomRightRadius": "9999px" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/rounded/sm/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-02T19:19:42Z" 13 | }, 14 | "lastModificationSignature": "12f67423b6dc34ad72910ec95c30458fa208e23b7d152475964a76df13a892bd" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/rounded/sm/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "borderTopLeftRadius": "2px", 5 | "borderTopRightRadius": "2px", 6 | "borderBottomLeftRadius": "2px", 7 | "borderBottomRightRadius": "2px" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/rounded/t/lg/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "borderTopLeftRadius": "8px", 5 | "borderTopRightRadius": "8px" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/rounded/t/md/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "borderTopLeftRadius": "4px", 5 | "borderTopRightRadius": "4px" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/rounded/t/none/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "borderTopLeftRadius": "0px", 5 | "borderTopRightRadius": "0px" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/rounded/t/sm/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "borderTopLeftRadius": "2px", 5 | "borderTopRightRadius": "2px" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/rounded/t/xl/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "borderTopLeftRadius": "24px", 5 | "borderTopRightRadius": "24px" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/rounded/xl/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-02T19:20:39Z" 13 | }, 14 | "lastModificationSignature": "5e94f65967c4edeecbf33dbf66e032b906877324127034c5dfb483adeb3580db" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/rounded/xl/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "borderTopLeftRadius": "24px", 5 | "borderTopRightRadius": "24px", 6 | "borderBottomLeftRadius": "24px", 7 | "borderBottomRightRadius": "24px" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/typo/center/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2020-12-07T08:34:10Z" 13 | }, 14 | "lastModificationSignature": "1555b843ffa4a67d12e317b06c273a1aa9fabab0be8d4d56cfca0c41ffc3078f" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/typo/center/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "textAlign": "center" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/typo/font/basic/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "fontFamily": "basic" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/typo/font/oswald/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "fontFamily": "oswald", 5 | "textTransform": "uppercase" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/typo/h1/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2020-12-07T08:21:21Z" 13 | }, 14 | "lastModificationSignature": "e49decf6ba7ec4173e66542ac25e32966a8b6cecbd7bd4cf0d938043790649af" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/typo/h1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "fontFamily": "Oswald", 5 | "fontSize": "6rem", 6 | "fontWeight": "300", 7 | "textTransform": "uppercase" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/typo/h2/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2020-12-07T08:36:35Z" 13 | }, 14 | "lastModificationSignature": "97ff641f0709446686d8f4dad3bea1bf196219a36ad0eca38c7057ba5b748650" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/typo/h2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "fontFamily": "Oswald", 5 | "fontSize": "3.75rem", 6 | "fontWeight": "300", 7 | "textTransform": "uppercase" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/typo/h3/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2020-12-07T08:37:43Z" 13 | }, 14 | "lastModificationSignature": "ecf14bbf41eca3c4131a06faab78bca4cdddc4121d11f0cd63fa4714581417d1" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/typo/h3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "fontFamily": "Oswald", 5 | "fontSize": "3rem", 6 | "fontWeight": "400", 7 | "textTransform": "uppercase" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/typo/h4/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2020-12-07T08:38:07Z" 13 | }, 14 | "lastModificationSignature": "7758952775ea5e7ff1675c0b8b0d286c530ccb28ff54ecd366f3142894bfec5b" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/typo/h4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "fontFamily": "Oswald", 5 | "fontSize": "2.125rem", 6 | "fontWeight": "400", 7 | "textTransform": "uppercase" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/typo/h5/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-14T17:00:26Z" 13 | }, 14 | "lastModificationSignature": "abf340b3f4a960beaaf0671fdf4ae592a511532ca1796c85a1b4612973be406b" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/typo/h5/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "fontFamily": "Oswald", 5 | "fontSize": "1.5rem", 6 | "fontWeight": "400", 7 | "textTransform": "uppercase" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/typo/h6/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-14T17:01:00Z" 13 | }, 14 | "lastModificationSignature": "e03c035ce2ae6be88bb297b177d2599ac8484ed49a219b2a4654f1caa4a7f069" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/typo/h6/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "fontFamily": "Oswald", 5 | "fontSize": "1.25rem", 6 | "fontWeight": "600", 7 | "textTransform": "uppercase" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/typo/subtitle-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "fontFamily": "Oswald", 5 | "fontSize": "1rem", 6 | "fontWeight": "400", 7 | "letterSpacing": ".009375em " 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/typo/subtitle-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "fontFamily": "Oswald", 5 | "fontSize": "0.875rem", 6 | "fontWeight": "500", 7 | "letterSpacing": ".0071428571em" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/typo/truncate/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "overflow": "hidden", 5 | "textOverflow": "ellipsis", 6 | "whiteSpace": "nowrap" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/elevation-0/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "boxShadow": "0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/elevation-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "boxShadow": "0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/elevation-10/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "boxShadow": "0 6px 6px -3px rgba(0,0,0,.2),0 10px 14px 1px rgba(0,0,0,.14),0 4px 18px 3px rgba(0,0,0,.12)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/elevation-11/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "boxShadow": "0 6px 7px -4px rgba(0,0,0,.2),0 11px 15px 1px rgba(0,0,0,.14),0 4px 20px 3px rgba(0,0,0,.12)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/elevation-12/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "boxShadow": "0 7px 8px -4px rgba(0,0,0,.2),0 12px 17px 2px rgba(0,0,0,.14),0 5px 22px 4px rgba(0,0,0,.12)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/elevation-13/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "boxShadow": "0 7px 8px -4px rgba(0,0,0,.2),0 13px 19px 2px rgba(0,0,0,.14),0 5px 24px 4px rgba(0,0,0,.12)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/elevation-14/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "boxShadow": "0 7px 9px -4px rgba(0,0,0,.2),0 14px 21px 2px rgba(0,0,0,.14),0 5px 26px 4px rgba(0,0,0,.12)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/elevation-15/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "boxShadow": "0 8px 9px -5px rgba(0,0,0,.2),0 15px 22px 2px rgba(0,0,0,.14),0 6px 28px 5px rgba(0,0,0,.12)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/elevation-16/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "boxShadow": "0 8px 10px -5px rgba(0,0,0,.2),0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/elevation-17/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "boxShadow": "0 8px 11px -5px rgba(0,0,0,.2),0 17px 26px 2px rgba(0,0,0,.14),0 6px 32px 5px rgba(0,0,0,.12)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/elevation-18/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "boxShadow": "0 9px 11px -5px rgba(0,0,0,.2),0 18px 28px 2px rgba(0,0,0,.14),0 7px 34px 6px rgba(0,0,0,.12)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/elevation-19/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "boxShadow": "0 9px 12px -6px rgba(0,0,0,.2),0 19px 29px 2px rgba(0,0,0,.14),0 7px 36px 6px rgba(0,0,0,.12)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/elevation-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "boxShadow": "0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/elevation-20/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "boxShadow": "0 10px 13px -6px rgba(0,0,0,.2),0 20px 31px 3px rgba(0,0,0,.14),0 8px 38px 7px rgba(0,0,0,.12)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/elevation-21/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "boxShadow": "0 10px 13px -6px rgba(0,0,0,.2),0 21px 33px 3px rgba(0,0,0,.14),0 8px 40px 7px rgba(0,0,0,.12)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/elevation-22/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "boxShadow": "0 10px 14px -6px rgba(0,0,0,.2),0 22px 35px 3px rgba(0,0,0,.14),0 8px 42px 7px rgba(0,0,0,.12)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/elevation-23/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "boxShadow": "0 11px 14px -7px rgba(0,0,0,.2),0 23px 36px 3px rgba(0,0,0,.14),0 9px 44px 8px rgba(0,0,0,.12)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/elevation-24/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "boxShadow": "0 11px 15px -7px rgba(0,0,0,.2),0 24px 38px 3px rgba(0,0,0,.14),0 9px 46px 8px rgba(0,0,0,.12)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/elevation-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "boxShadow": "0 3px 3px -2px rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 1px 8px 0 rgba(0,0,0,.12)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/elevation-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "boxShadow": "0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/elevation-5/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "boxShadow": "0 3px 5px -1px rgba(0,0,0,.2),0 5px 8px 0 rgba(0,0,0,.14),0 1px 14px 0 rgba(0,0,0,.12)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/elevation-6/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "boxShadow": "0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/elevation-7/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "boxShadow": "0 4px 5px -2px rgba(0,0,0,.2),0 7px 10px 1px rgba(0,0,0,.14),0 2px 16px 1px rgba(0,0,0,.12)!important" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/elevation-8/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "boxShadow": "0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)!important" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/elevation-9/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "boxShadow": "0 5px 6px -3px rgba(0,0,0,.2),0 9px 12px 1px rgba(0,0,0,.14),0 3px 16px 2px rgba(0,0,0,.12)" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/ma-0/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-04T08:43:51Z" 13 | }, 14 | "lastModificationSignature": "118a1de70952485e5d72a61e0c0d4e294a2da444cf56e92c013571bcd56ab412" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/ma-0/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginBottom": "0px", 5 | "marginLeft": "0px", 6 | "marginRight": "0px", 7 | "marginTop": "0px" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/ma-1/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-01T07:55:35Z" 13 | }, 14 | "lastModificationSignature": "8e4e776722bcef2506223663d59db7137b99a6909c2e65c824e64c3325e170d0" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/ma-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginBottom": "4px", 5 | "marginLeft": "4px", 6 | "marginRight": "4px", 7 | "marginTop": "4px" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/ma-2/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-01T07:55:47Z" 13 | }, 14 | "lastModificationSignature": "e106189479262a881af2f74b4e167a021ec03197715e9e2954896478cfd43fb3" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/ma-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginBottom": "8px", 5 | "marginLeft": "8px", 6 | "marginRight": "8px", 7 | "marginTop": "8px" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/ma-3/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-01T07:56:00Z" 13 | }, 14 | "lastModificationSignature": "ed957ab55dc43308acba0810c77fa2af4ea997f1714f4cabde628385e96157a5" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/ma-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginBottom": "12px", 5 | "marginLeft": "12px", 6 | "marginRight": "12px", 7 | "marginTop": "12px" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/ma-4/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-01T07:56:16Z" 13 | }, 14 | "lastModificationSignature": "17d95771240e964a235296a7d210975439e9a9c19f4b2157969f060ff7fc992a" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/ma-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginBottom": "16px", 5 | "marginLeft": "16px", 6 | "marginRight": "16px", 7 | "marginTop": "16px" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/ma-5/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-01T07:56:33Z" 13 | }, 14 | "lastModificationSignature": "47328050e30c459acdd8eb8098ac8a32f11d57e246e1ad944588a1a326b6bcb8" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/ma-5/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginBottom": "20px", 5 | "marginLeft": "20px", 6 | "marginRight": "20px", 7 | "marginTop": "20px" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mb-0/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-12T16:10:16Z" 13 | }, 14 | "lastModificationSignature": "6c273f74e10d1f8d1358e67d52cda5d2dd89bdd01e51801b74a8a21795fe0ddb" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mb-0/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginBottom": "0px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mb-1/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-02T01:59:23Z" 13 | }, 14 | "lastModificationSignature": "2736ed74e877f43eb1c4e6397be27a6687606d7316a4c2fcb366940e6676301f" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mb-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginBottom": "4px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mb-2/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-02T01:59:06Z" 13 | }, 14 | "lastModificationSignature": "b5f3cbae05c147bf701eabed98182814d2863916090285f0449261b723adc225" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mb-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginBottom": "8px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mb-3/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2020-12-05T08:23:58Z" 13 | }, 14 | "lastModificationSignature": "2ecc9adf999d9e75fb94689f083c423ee2dde02bfac8c489d5a80dd2abb72923" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mb-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginBottom": "12px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mb-4/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2020-12-05T08:26:06Z" 13 | }, 14 | "lastModificationSignature": "3cee4da52e7f2b2e82cdfba371456d4491286acdfb0948c41d02736806159e78" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mb-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginBottom": "16px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mb-5/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2020-12-05T08:26:15Z" 13 | }, 14 | "lastModificationSignature": "7f3d7c418158855275e5d50b672942f4b03b3e82a82cfff56ff4ea978b639412" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mb-5/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginBottom": "20px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/ml-0/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-12T16:10:41Z" 13 | }, 14 | "lastModificationSignature": "52e18ba236fd7764cdc2514e34822ab4d617db50b21c0fd1aa9831bd03f367c9" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/ml-0/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginLeft": "0px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/ml-1/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-01T08:06:36Z" 13 | }, 14 | "lastModificationSignature": "ed75d2bd1d72cceba3029171acc92a311ce46f52f5f1dfa7f3d451a47bebc78f" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/ml-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginLeft": "4px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/ml-2/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-01T08:06:50Z" 13 | }, 14 | "lastModificationSignature": "7985d8a5e3dba1698afa584dbe4b4000ab2ca93d2f20120920255c370b2622aa" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/ml-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginLeft": "8px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/ml-3/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-01T08:07:03Z" 13 | }, 14 | "lastModificationSignature": "0251f7da250337f089fbddfc673a84eb575a00e3d3bf03b15c2aa50381f581a4" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/ml-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginLeft": "12px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/ml-4/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-01T08:07:18Z" 13 | }, 14 | "lastModificationSignature": "12ed559082f310e7c7931e60fa9c6a8599a79d49864540c13fd0062d6ed5d970" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/ml-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginLeft": "16px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/ml-5/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-01T08:07:31Z" 13 | }, 14 | "lastModificationSignature": "c8d5a0d98079a49d578bdfe27748b07a7032c331ccbb6748fc66746cb2625a44" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/ml-5/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginLeft": "20px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mr-0/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-12T16:10:56Z" 13 | }, 14 | "lastModificationSignature": "7fedec58817cf2a4f1655fb3ba29e27d75d79a806973e99e0f9a9a2d1f258a88" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mr-0/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginRight": "0px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mr-1/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-01T08:07:52Z" 13 | }, 14 | "lastModificationSignature": "750a04b3e139449484043befa779242e1a0d0e886cc67678e8885f4d89bf6bd7" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mr-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginRight": "4px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mr-2/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-01T08:08:08Z" 13 | }, 14 | "lastModificationSignature": "3b93f7fa5f794c515289e2a9147716087ad7f0b1a81138ed18518c2a59f4a7ac" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mr-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginRight": "8px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mr-3/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-01T08:08:21Z" 13 | }, 14 | "lastModificationSignature": "d50b1bcc82b6eb61bb04f3e04cefa1b5f70a24c9ca34f16387defa82204baecf" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mr-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginRight": "12px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mr-4/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-01T08:08:38Z" 13 | }, 14 | "lastModificationSignature": "6d058c65683a5c949996119d3ebc33a70bda3ead0ea5c27a6216de54290c6335" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mr-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginRight": "16px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mr-5/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-01T08:09:04Z" 13 | }, 14 | "lastModificationSignature": "38cc4a123b4ada4f11ad60161c78250ad6da7868108b04354913df16a96c22a7" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mr-5/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginRight": "20px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mt-0/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-02T02:28:04Z" 13 | }, 14 | "lastModificationSignature": "7527441a2dffc4b4f3689bddcd0e73a426291b31c5c656cd5245bb9313906974" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mt-0/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginTop": "0px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mt-1/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-02T02:01:54Z" 13 | }, 14 | "lastModificationSignature": "356d38a3c7215618e2704775fed0bd2e48d2c9b0bf0f7980438e6f9225e95af8" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mt-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginTop": "4px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mt-2/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-02T02:26:16Z" 13 | }, 14 | "lastModificationSignature": "e664a5194520c6b7d6149b667b6804eb40ed8e0e23e8b5af6c58df8677789091" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mt-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginTop": "8px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mt-3/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-09T02:52:41Z" 13 | }, 14 | "lastModificationSignature": "2a232576381d6285bb057d767b7c7d20a9126d4524b5076f59457b0736f60a53" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mt-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginTop": "12px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mt-4/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-02-03T00:36:27Z" 13 | }, 14 | "lastModificationSignature": "dbe8b44ab7647dbd03d6e32fd95172b005b1f00703a7af10adec9255a01308d9" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mt-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginTop": "16px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mt-5/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-02-03T00:36:34Z" 13 | }, 14 | "lastModificationSignature": "26abcd82ed76a509a5a418a638bd379c9c0f7797f389b4c5ff089aa8f9c2faa7" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mt-5/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginTop": "20px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mx-0/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-12T16:11:25Z" 13 | }, 14 | "lastModificationSignature": "6017894852dc6771c73db1db55c95cd6b64b3e20dbe66de4e20a535d01ba91c6" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mx-0/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginLeft": "0px", 5 | "marginRight": "0px" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mx-1/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-01T07:56:51Z" 13 | }, 14 | "lastModificationSignature": "7542eaf99d7c396c586b095236e3f21a6e6733a1ef729fb8dba25d343a3cd746" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mx-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginLeft": "4px", 5 | "marginRight": "4px" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mx-2/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-01T07:56:59Z" 13 | }, 14 | "lastModificationSignature": "921f598bebbde5f15b8c71d653baeb50891836f3fdb63ea2fd65be1da2529e52" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mx-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginLeft": "8px", 5 | "marginRight": "8px" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mx-3/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-01T07:57:07Z" 13 | }, 14 | "lastModificationSignature": "4f167c5bd5f18b56bda635f0b8acfad138758e9b953ccfbed36d5266021ce369" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mx-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginLeft": "12px", 5 | "marginRight": "12px" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mx-4/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-01T07:57:15Z" 13 | }, 14 | "lastModificationSignature": "7e5a8ecae2e72d5552d2d1adb78d1fc7ca475e615d2323e8fc9b2aea6bc037fe" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mx-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginLeft": "16px", 5 | "marginRight": "16px" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mx-5/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-01T07:57:25Z" 13 | }, 14 | "lastModificationSignature": "f316ef2d8d56104590da8cb1504680ae359a09bd91546fe3bfcf5d74c7179c32" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/mx-5/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginLeft": "20px", 5 | "marginRight": "20px" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/my-0/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-12T16:11:45Z" 13 | }, 14 | "lastModificationSignature": "4a17e7bacfa5e86167de0af3e55db9a4bf62050b88245e90f261c39abb0550e3" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/my-0/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginBottom": "0px", 5 | "marginTop": "0px" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/my-1/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-01T07:57:34Z" 13 | }, 14 | "lastModificationSignature": "d134c6bfeeb25ea116b13a333611d722dd56255e6d88d1d877e785716af224c8" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/my-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginBottom": "4px", 5 | "marginTop": "4px" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/my-2/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-01T07:57:43Z" 13 | }, 14 | "lastModificationSignature": "2c7151da0fe10c0e022165b5c75cb77867827117599ccf2106b132e32446efdb" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/my-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginBottom": "8px", 5 | "marginTop": "8px" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/my-3/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-01T07:57:52Z" 13 | }, 14 | "lastModificationSignature": "3e0997fb53b55a3e1abf2070717bad08450dcee00fe75229d319f7c1c4474441" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/my-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginBottom": "12px", 5 | "marginTop": "12px" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/my-4/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-01T07:58:02Z" 13 | }, 14 | "lastModificationSignature": "31deea9648f56de174e99b63e69138c8f51d4b3f242e1e98dc008648a14b8d83" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/my-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginBottom": "16px", 5 | "marginTop": "16px" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/my-5/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-01T07:58:12Z" 13 | }, 14 | "lastModificationSignature": "1bd3c1d9f115953543821e03488f4e24fc37e65bb2a6d81632bd02b36f4de9d8" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/my-5/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginBottom": "20px", 5 | "marginTop": "20px" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/my-6/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-10T09:33:27Z" 13 | }, 14 | "lastModificationSignature": "6d8bda4f872e1a2a7bec6e9dd741b12d9993cf71dda8f13eccd985efd973cc77" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/my-6/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "marginBottom": "24px", 5 | "marginTop": "24px" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pa-0/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-09T00:04:15Z" 13 | }, 14 | "lastModificationSignature": "153ffdc6e07bc45cadaef26884835541ba28ebc21e8d057d79c7be89ed3ea2dd" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pa-0/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingBottom": "0px", 5 | "paddingLeft": "0px", 6 | "paddingRight": "0px", 7 | "paddingTop": "0px" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pa-1/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-02T18:08:49Z" 13 | }, 14 | "lastModificationSignature": "1be7a5571f84300a7763a53dd1f9128edae074ac9b131f41d85bce5515eb7574" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pa-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingBottom": "4px", 5 | "paddingLeft": "4px", 6 | "paddingRight": "4px", 7 | "paddingTop": "4px" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pa-2/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-02T18:09:05Z" 13 | }, 14 | "lastModificationSignature": "a29226251043618f21000eb006dae81248952fb4c2443bf276e463c0207d7119" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pa-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingBottom": "8px", 5 | "paddingLeft": "8px", 6 | "paddingRight": "8px", 7 | "paddingTop": "8px" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pa-3/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-01T08:31:02Z" 13 | }, 14 | "lastModificationSignature": "2fc7957d389a3a680879bae207063631dadb0a6626dc018dfaaf365f9fbc793c" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pa-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingBottom": "12px", 5 | "paddingLeft": "12px", 6 | "paddingRight": "12px", 7 | "paddingTop": "12px" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pa-4/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-19T18:39:23Z" 13 | }, 14 | "lastModificationSignature": "3ca8093c1b5ede0f26e888fe06f5040e00d09040e263960422777cffbf43cd7a" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pa-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingBottom": "16px", 5 | "paddingLeft": "16px", 6 | "paddingRight": "16px", 7 | "paddingTop": "16px" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pa-5/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-01T08:30:17Z" 13 | }, 14 | "lastModificationSignature": "7427c0ff6c50240b6606336a2a9a37cfa3b3e7cbc708b15978f256bf70e2357a" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pa-5/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingBottom": "20px", 5 | "paddingLeft": "20px", 6 | "paddingRight": "20px", 7 | "paddingTop": "20px" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pb-0/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-12T16:12:34Z" 13 | }, 14 | "lastModificationSignature": "74ed127bbc35b0c088aca3b9063bb60e28070bd93c02f033b01bdf7d05680731" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pb-0/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingBottom": "0px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pb-1/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-12T16:12:41Z" 13 | }, 14 | "lastModificationSignature": "0a85a3903dc08830288343a79341357bdf773c5e1e79a5c37f6023f4e0f62a08" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pb-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingBottom": "4px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pb-2/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-12T16:12:53Z" 13 | }, 14 | "lastModificationSignature": "b63af94e7aa2c899a01929280bbfbd5e12630f7e49524dcaeba2f1aa0ce36143" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pb-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingBottom": "8px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pb-3/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2020-12-05T17:42:37Z" 13 | }, 14 | "lastModificationSignature": "e5a3fe2b4dbdfc354aa4290e0436c56858c9dd7eaff62197ee08175259b4c08b" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pb-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingBottom": "12px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pb-4/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-12T16:13:00Z" 13 | }, 14 | "lastModificationSignature": "15ff30574d77c62dfb122d9dd54d0162709a6beb6861dbc5b6d3540bbab446f0" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pb-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingBottom": "16px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pb-5/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-12T16:13:07Z" 13 | }, 14 | "lastModificationSignature": "e4ff34687a1e9d236d556a2d4e941d0ce2760c2776395285d283dcd845143307" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pb-5/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingBottom": "20px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pl-0/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-12T16:13:24Z" 13 | }, 14 | "lastModificationSignature": "9d71d3ab52e4601e0b86f38f67b559a8cb53d1421cc647581d0bcf57ca7e0cc9" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pl-0/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingLeft": "0px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pl-1/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-06T20:24:28Z" 13 | }, 14 | "lastModificationSignature": "52410560a2a762baa616b5098e6655446587d1fb2ee5d64988681bd9fd371935" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pl-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingLeft": "4px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pl-2/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-06T20:23:39Z" 13 | }, 14 | "lastModificationSignature": "eb886d0679bb7c8ed06a1e8c450be09681623a420401374cb711cd709216d7c5" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pl-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingLeft": "8px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pl-3/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-12T16:13:41Z" 13 | }, 14 | "lastModificationSignature": "2cd56f4d6161d8b593b94bade7abc120e475a2d714c8591ea9fd3358e4f7487c" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pl-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingLeft": "12px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pl-4/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-12T16:13:54Z" 13 | }, 14 | "lastModificationSignature": "2516b21af418be00be94a91ea4a81c6e08ad3ea67527f471d1547ff63c7abddd" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pl-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingLeft": "16px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pl-5/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-02T21:55:06Z" 13 | }, 14 | "lastModificationSignature": "1a4670e343d3da7f6a16e81b0cd128585c7df14ed6223a0fb2e82e581925b1ad" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pl-5/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingLeft": "20px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pr-0/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-12T16:14:53Z" 13 | }, 14 | "lastModificationSignature": "07ef72a7a6c9fa97c49ebefcf17ef65476bb981120bff61d0b630cf796fa86d6" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pr-0/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingRight": "0px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pr-1/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2020-12-05T07:30:32Z" 13 | }, 14 | "lastModificationSignature": "065fff17672588a98b93743d941de4bf4def4f1356356756ecd6f03412e9c5b6" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pr-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingRight": "4px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pr-2/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2020-12-05T07:30:37Z" 13 | }, 14 | "lastModificationSignature": "5ff9ee0ab50f4463bcc25cad3c19a54a66a300d45aa1908ff36b0edd56365966" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pr-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingRight": "8px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pr-3/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-12T16:15:20Z" 13 | }, 14 | "lastModificationSignature": "18cc59bcccc6a25ec53533a63cd38c4e6a8d0cead94f966907282cf9eab13234" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pr-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingRight": "12px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pr-4/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-12T16:15:34Z" 13 | }, 14 | "lastModificationSignature": "5a184baa13ef5717d8f3cec8e701535e7fd20f893915960777cf7da13dca3766" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pr-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingRight": "16px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pr-5/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-12T16:15:46Z" 13 | }, 14 | "lastModificationSignature": "e651a606e6c11a527560edcc387a3bd9c12e2ed3a3640ce2af1815a9a70b4ccc" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pr-5/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingRight": "20px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pt-0/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-03T08:08:18Z" 13 | }, 14 | "lastModificationSignature": "d675e0988a750b2007e1f26cb51dd1ff618861c010211d24624c91888c6429e5" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pt-0/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingTop": "0px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pt-1/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-03T08:08:02Z" 13 | }, 14 | "lastModificationSignature": "db59d8242f33420c5cce8f18e9af2cb1981ac3abbc06b104200d071c1f7a0a83" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pt-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingTop": "4px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pt-2/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-02T18:10:43Z" 13 | }, 14 | "lastModificationSignature": "49c17f5ca2c51fab4f853d23c660f84e19c2ec9c692a8b492a4cb37f3763fe4f" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pt-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingTop": "8px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pt-3/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-02T21:58:39Z" 13 | }, 14 | "lastModificationSignature": "42b19dcb504529b657bfa75342c99ca7086eaea72dbdc8cd326408dd74b2f37b" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pt-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingTop": "12px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pt-4/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-12T16:16:08Z" 13 | }, 14 | "lastModificationSignature": "e9d11338c4820f917c251cd942ff79b309d3e724216a71301747fc4294f403a7" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pt-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingTop": "16px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pt-5/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-12T16:16:20Z" 13 | }, 14 | "lastModificationSignature": "5137786d2341c5ec408eb1397c673485e610fea45417ea21f8fedb5de6c2c461" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/pt-5/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingTop": "20px" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/px-0/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-12T16:16:36Z" 13 | }, 14 | "lastModificationSignature": "1f7b66a908425b6bff90c509d363a39b4345101dfae4f03d78ebba51145e7ef8" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/px-0/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingLeft": "0px", 5 | "paddingRight": "0px" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/px-1/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2020-12-05T07:30:54Z" 13 | }, 14 | "lastModificationSignature": "62c6a6e6f6e80b5939af37343441b2ede9e12a4357745c3f620517e7c0e20ac4" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/px-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingLeft": "4px", 5 | "paddingRight": "4px" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/px-2/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2020-12-05T07:31:08Z" 13 | }, 14 | "lastModificationSignature": "c97a64e0e48eead7ffb1ad8138846144ffda765b456d61b3beca7a882f7127fd" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/px-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingLeft": "8px", 5 | "paddingRight": "8px" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/px-3/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2020-12-05T07:31:31Z" 13 | }, 14 | "lastModificationSignature": "0ae5d35de8a89c159f2913f9c156a61926eb2d05a41f66b964efdebf8cc1e15d" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/px-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingLeft": "12px", 5 | "paddingRight": "12px" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/px-4/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-12T16:16:56Z" 13 | }, 14 | "lastModificationSignature": "1c1c865548a3748dbb0f05213f28bec000b46643ec19d457f6c4ded7922ade79" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/px-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingLeft": "16px", 5 | "paddingRight": "16px" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/px-5/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-12T16:17:12Z" 13 | }, 14 | "lastModificationSignature": "007f3e6d9adc76b34dd4f3aa742929612d75e8293c6d6cb54f9e921d34f1c516" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/px-5/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingLeft": "20px", 5 | "paddingRight": "20px" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/py-0/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-12T16:17:36Z" 13 | }, 14 | "lastModificationSignature": "10aa2d248bc3285788be568a58b9f6f3c016c8340741d8caccdadc9c12c0ab08" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/py-0/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingBottom": "0px", 5 | "paddingTop": "0px" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/py-1/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-03T03:25:23Z" 13 | }, 14 | "lastModificationSignature": "75db3b98a776573b3feba278dd333d0a09cf4735887c9bdd704a6edd200d85cd" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/py-1/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingBottom": "4px", 5 | "paddingTop": "4px" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/py-2/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-06T20:22:30Z" 13 | }, 14 | "lastModificationSignature": "321386060f4923a87334034cae423ff8117e845b174a6e83c10bb248a7226eb8" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/py-2/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingBottom": "8px", 5 | "paddingTop": "8px" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/py-3/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-12T16:17:49Z" 13 | }, 14 | "lastModificationSignature": "c16be59d60b209334c404dcb970b49a908d38af56644da2cf605565cdb027505" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/py-3/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingBottom": "12px", 5 | "paddingTop": "12px" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/py-4/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-12T16:18:11Z" 13 | }, 14 | "lastModificationSignature": "8f643eb8ce5d0b18a47da196687cc8a520b0c41fc661a38afc11c39daca9df92" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/py-4/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingBottom": "16px", 5 | "paddingTop": "16px" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/py-5/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "G", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "style.json" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-12T16:18:20Z" 13 | }, 14 | "lastModificationSignature": "0fecb814573d98454be64d5aab80558318ead8813ac2582fe79bd50b9bb43ff9" 15 | } 16 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/style-classes/util/py-5/style.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": { 3 | "style": { 4 | "paddingBottom": "20px", 5 | "paddingTop": "20px" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/views/Components/Button/Basic/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyja/ignition-framework/60a530d7617b950e1224f38e380b548edf5412d9/com.inductiveautomation.perspective/views/Components/Button/Basic/thumbnail.png -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/views/Components/Button/Combined/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyja/ignition-framework/60a530d7617b950e1224f38e380b548edf5412d9/com.inductiveautomation.perspective/views/Components/Button/Combined/thumbnail.png -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/views/Components/Button/One-Shot/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyja/ignition-framework/60a530d7617b950e1224f38e380b548edf5412d9/com.inductiveautomation.perspective/views/Components/Button/One-Shot/thumbnail.png -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/views/Components/Charts/Sparkline/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyja/ignition-framework/60a530d7617b950e1224f38e380b548edf5412d9/com.inductiveautomation.perspective/views/Components/Charts/Sparkline/thumbnail.png -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/views/Components/Expansion Panel/Panel/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyja/ignition-framework/60a530d7617b950e1224f38e380b548edf5412d9/com.inductiveautomation.perspective/views/Components/Expansion Panel/Panel/thumbnail.png -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/views/Components/Expansion Panel/Panels/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyja/ignition-framework/60a530d7617b950e1224f38e380b548edf5412d9/com.inductiveautomation.perspective/views/Components/Expansion Panel/Panels/thumbnail.png -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/views/Components/Form/Numeric Input/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyja/ignition-framework/60a530d7617b950e1224f38e380b548edf5412d9/com.inductiveautomation.perspective/views/Components/Form/Numeric Input/thumbnail.png -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/views/Components/Gauge/Circular/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyja/ignition-framework/60a530d7617b950e1224f38e380b548edf5412d9/com.inductiveautomation.perspective/views/Components/Gauge/Circular/thumbnail.png -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/views/Components/Pipe/Bend/Combined/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyja/ignition-framework/60a530d7617b950e1224f38e380b548edf5412d9/com.inductiveautomation.perspective/views/Components/Pipe/Bend/Combined/thumbnail.png -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/views/Components/Pipe/Bend/Realistic/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyja/ignition-framework/60a530d7617b950e1224f38e380b548edf5412d9/com.inductiveautomation.perspective/views/Components/Pipe/Bend/Realistic/thumbnail.png -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/views/Components/Pipe/Bend/Simple/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyja/ignition-framework/60a530d7617b950e1224f38e380b548edf5412d9/com.inductiveautomation.perspective/views/Components/Pipe/Bend/Simple/thumbnail.png -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/views/Components/Pipe/Combined/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyja/ignition-framework/60a530d7617b950e1224f38e380b548edf5412d9/com.inductiveautomation.perspective/views/Components/Pipe/Combined/thumbnail.png -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/views/Components/Pipe/Realistic/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyja/ignition-framework/60a530d7617b950e1224f38e380b548edf5412d9/com.inductiveautomation.perspective/views/Components/Pipe/Realistic/thumbnail.png -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/views/Components/Pipe/Simple/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyja/ignition-framework/60a530d7617b950e1224f38e380b548edf5412d9/com.inductiveautomation.perspective/views/Components/Pipe/Simple/thumbnail.png -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/views/Components/Pump/Symbol/Combined/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyja/ignition-framework/60a530d7617b950e1224f38e380b548edf5412d9/com.inductiveautomation.perspective/views/Components/Pump/Symbol/Combined/thumbnail.png -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/views/Components/Pump/Symbol/Realistic/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyja/ignition-framework/60a530d7617b950e1224f38e380b548edf5412d9/com.inductiveautomation.perspective/views/Components/Pump/Symbol/Realistic/thumbnail.png -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/views/Components/Pump/Symbol/Simple/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyja/ignition-framework/60a530d7617b950e1224f38e380b548edf5412d9/com.inductiveautomation.perspective/views/Components/Pump/Symbol/Simple/thumbnail.png -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/views/Components/Valve/Symbol/Combined/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyja/ignition-framework/60a530d7617b950e1224f38e380b548edf5412d9/com.inductiveautomation.perspective/views/Components/Valve/Symbol/Combined/thumbnail.png -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/views/Components/Valve/Symbol/Realistic/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyja/ignition-framework/60a530d7617b950e1224f38e380b548edf5412d9/com.inductiveautomation.perspective/views/Components/Valve/Symbol/Realistic/thumbnail.png -------------------------------------------------------------------------------- /com.inductiveautomation.perspective/views/Components/Valve/Symbol/Simple/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyja/ignition-framework/60a530d7617b950e1224f38e380b548edf5412d9/com.inductiveautomation.perspective/views/Components/Valve/Symbol/Simple/thumbnail.png -------------------------------------------------------------------------------- /com.inductiveautomation.vision/client-tags/data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyja/ignition-framework/60a530d7617b950e1224f38e380b548edf5412d9/com.inductiveautomation.vision/client-tags/data.bin -------------------------------------------------------------------------------- /com.inductiveautomation.vision/client-tags/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "C", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "data.bin" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-11T17:20:06Z" 13 | }, 14 | "lastModificationSignature": "463f72cb873719835466c57a6c37422b0932b45cc2fde1a40f5fb20187052159" 15 | } 16 | } -------------------------------------------------------------------------------- /fonts/Basic/Basic-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyja/ignition-framework/60a530d7617b950e1224f38e380b548edf5412d9/fonts/Basic/Basic-Regular.ttf -------------------------------------------------------------------------------- /fonts/Lobster/Lobster-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyja/ignition-framework/60a530d7617b950e1224f38e380b548edf5412d9/fonts/Lobster/Lobster-Regular.ttf -------------------------------------------------------------------------------- /fonts/Oswald/Oswald-VariableFont_wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyja/ignition-framework/60a530d7617b950e1224f38e380b548edf5412d9/fonts/Oswald/Oswald-VariableFont_wght.ttf -------------------------------------------------------------------------------- /fonts/Oswald/static/Oswald-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyja/ignition-framework/60a530d7617b950e1224f38e380b548edf5412d9/fonts/Oswald/static/Oswald-Bold.ttf -------------------------------------------------------------------------------- /fonts/Oswald/static/Oswald-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyja/ignition-framework/60a530d7617b950e1224f38e380b548edf5412d9/fonts/Oswald/static/Oswald-ExtraLight.ttf -------------------------------------------------------------------------------- /fonts/Oswald/static/Oswald-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyja/ignition-framework/60a530d7617b950e1224f38e380b548edf5412d9/fonts/Oswald/static/Oswald-Light.ttf -------------------------------------------------------------------------------- /fonts/Oswald/static/Oswald-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyja/ignition-framework/60a530d7617b950e1224f38e380b548edf5412d9/fonts/Oswald/static/Oswald-Medium.ttf -------------------------------------------------------------------------------- /fonts/Oswald/static/Oswald-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyja/ignition-framework/60a530d7617b950e1224f38e380b548edf5412d9/fonts/Oswald/static/Oswald-Regular.ttf -------------------------------------------------------------------------------- /fonts/Oswald/static/Oswald-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyja/ignition-framework/60a530d7617b950e1224f38e380b548edf5412d9/fonts/Oswald/static/Oswald-SemiBold.ttf -------------------------------------------------------------------------------- /ignition/global-props/data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joyja/ignition-framework/60a530d7617b950e1224f38e380b548edf5412d9/ignition/global-props/data.bin -------------------------------------------------------------------------------- /ignition/global-props/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "A", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "data.bin" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "external", 12 | "timestamp": "2021-01-11T17:15:25Z" 13 | }, 14 | "lastModificationSignature": "c1e8f8e70e1e4ca575af3e96a27fb501ca04f14d3144290626c515998871bc86" 15 | } 16 | } -------------------------------------------------------------------------------- /ignition/script-python/theme/resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "scope": "A", 3 | "version": 1, 4 | "restricted": false, 5 | "overridable": true, 6 | "files": [ 7 | "code.py" 8 | ], 9 | "attributes": { 10 | "lastModification": { 11 | "actor": "joyja", 12 | "timestamp": "2021-01-29T23:31:12Z" 13 | }, 14 | "lastModificationSignature": "7556703e3894df0cccf1f9ce6499f630b0f2ea5bcd1030b1e77d491510e218c1" 15 | } 16 | } -------------------------------------------------------------------------------- /project.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "framework", 3 | "description": "Basic themes and re-usable components", 4 | "parent": "", 5 | "enabled": true, 6 | "inheritable": true 7 | } -------------------------------------------------------------------------------- /theme/jar.css: -------------------------------------------------------------------------------- 1 | @import "./jar/index.css"; 2 | -------------------------------------------------------------------------------- /theme/jar/app/dock.css: -------------------------------------------------------------------------------- 1 | .ia_dockedView__handle { 2 | color: var(--neutral-10); 3 | background-color: var(--neutral-90); 4 | } 5 | -------------------------------------------------------------------------------- /theme/jar/app/index.css: -------------------------------------------------------------------------------- 1 | @import "./dock.css"; 2 | @import "./popup.css"; 3 | @import "./quality.css"; 4 | -------------------------------------------------------------------------------- /theme/jar/app/popup.css: -------------------------------------------------------------------------------- 1 | .ia_popup { 2 | background-color: var(--container); 3 | box-shadow: var(--boxShadow5); 4 | border: var(--containerBorder); 5 | } 6 | 7 | .ia_popup__header { 8 | background-color: var(--containerNested); 9 | color: var(--neutral-90); 10 | border-bottom: var(--containerBorder); 11 | font-size: 0.875rem; 12 | } 13 | -------------------------------------------------------------------------------- /theme/jar/common/component-modal.css: -------------------------------------------------------------------------------- 1 | .ia_componentModal { 2 | /* This is set in order to control the color of the arrow of the component modal. Matches background color of secondary container */ 3 | color: var(--containerRoot); 4 | background-color: var(--containerRoot); 5 | border: var(--containerBorder); 6 | } 7 | 8 | .ia_componentModal--fullViewOverlay { 9 | background-color: var(--opacity-85); 10 | } 11 | -------------------------------------------------------------------------------- /theme/jar/common/container.css: -------------------------------------------------------------------------------- 1 | .ia_container--root { 2 | background-color: var(--containerRoot); 3 | } 4 | 5 | .ia_container--secondary { 6 | background-color: var(--container); 7 | } 8 | -------------------------------------------------------------------------------- /theme/jar/common/context-menu.css: -------------------------------------------------------------------------------- 1 | .ia_contextMenu { 2 | background: var(--container); 3 | color: var(--neutral-90); 4 | } 5 | -------------------------------------------------------------------------------- /theme/jar/common/tag-browser.css: -------------------------------------------------------------------------------- 1 | .ia_tagBrowser__noResultsDisplay, 2 | .ia_tagBrowser__loadingDisplay { 3 | background: var(--neutral-10); 4 | border: 1px solid var(--border); 5 | } 6 | 7 | .ia_tagBrowser__noResultsDisplay__message { 8 | color: var(--input--disabled); 9 | } 10 | -------------------------------------------------------------------------------- /theme/jar/common/view.css: -------------------------------------------------------------------------------- 1 | .ia_viewStateDisplay { 2 | border: dashed 1px var(--border--disabled); 3 | } 4 | 5 | .ia_viewStateDisplay__icon { 6 | color: var(--neutral-70); 7 | } 8 | 9 | .ia_viewStateDisplay__primaryMessage { 10 | color: var(--neutral-90); 11 | } 12 | 13 | .ia_viewStateDisplay__secondaryMessage { 14 | color: var(--neutral-70); 15 | } 16 | -------------------------------------------------------------------------------- /theme/jar/designer/index.css: -------------------------------------------------------------------------------- 1 | @import "./selection.css"; 2 | -------------------------------------------------------------------------------- /theme/jar/designer/selection.css: -------------------------------------------------------------------------------- 1 | /* Containers */ 2 | .ia_designing__container__addChild { 3 | color: var(--neutral-70); 4 | } 5 | -------------------------------------------------------------------------------- /theme/jar/index.css: -------------------------------------------------------------------------------- 1 | /* Imports */ 2 | @import "./variables.css"; 3 | @import "./fonts.css"; 4 | @import "./globals.css"; 5 | @import "./app/index.css"; 6 | @import "./common/index.css"; 7 | @import "./designer/index.css"; 8 | @import "./palette/index.css"; 9 | -------------------------------------------------------------------------------- /theme/jar/palette/checkbox.css: -------------------------------------------------------------------------------- 1 | .ia_checkboxComponent { 2 | color: var(--neutral-90); 3 | } 4 | 5 | .ia_checkboxComponent--disabled { 6 | color: var(--label--disabled); 7 | } 8 | -------------------------------------------------------------------------------- /theme/jar/palette/column-container.css: -------------------------------------------------------------------------------- 1 | .ia_columnContainerComponent--designing__columnGuide { 2 | background-color: var(--containerNested); 3 | } 4 | 5 | .ia_columnContainerComponent--designing__row { 6 | outline: dashed var(--border) 1px; 7 | } 8 | -------------------------------------------------------------------------------- /theme/jar/palette/led.css: -------------------------------------------------------------------------------- 1 | .ia_ledComponent__diode--on { 2 | fill: var(--indicator); 3 | } 4 | 5 | .ia_ledComponent__diode--off { 6 | fill: var(--indicatorOff); 7 | } 8 | 9 | .ia_ledComponent__background { 10 | fill: var(--neutral-100); 11 | } 12 | -------------------------------------------------------------------------------- /theme/jar/palette/multi-state-button.css: -------------------------------------------------------------------------------- 1 | .ia_multiStateButton__button--primary--selected, 2 | .ia_multiStateButton__button--secondary--selected { 3 | font-weight: 500; 4 | } 5 | 6 | .ia_multiStateButton__button--primary--unselected, 7 | .ia_multiStateButton__button--secondary--unselected { 8 | font-weight: 400; 9 | } 10 | -------------------------------------------------------------------------------- /theme/jar/palette/one-shot-button.css: -------------------------------------------------------------------------------- 1 | .ia_oneShotButtonComponent__confirmModal__message { 2 | color: var(--neutral-90); 3 | margin: 0.5rem 0; 4 | font-size: 0.875rem; 5 | line-height: 1rem; 6 | } 7 | -------------------------------------------------------------------------------- /theme/jar/palette/radio-group.css: -------------------------------------------------------------------------------- 1 | .ia_radioGroupComponent--disabled { 2 | color: var(--label--disabled); 3 | } 4 | -------------------------------------------------------------------------------- /theme/jar/palette/signature-pad.css: -------------------------------------------------------------------------------- 1 | .ia_signaturePadComponent { 2 | background-color: var(--input); 3 | border: var(--containerBorder); 4 | } 5 | 6 | .ia_signaturePadComponent__actionBar { 7 | background-color: var(--containerNested); 8 | } 9 | -------------------------------------------------------------------------------- /theme/jar/palette/thermometer.css: -------------------------------------------------------------------------------- 1 | .ia_thermometerComponent__glass, 2 | .ia_thermometerComponent__tick, 3 | .ia_thermometerComponent__meniscus { 4 | stroke: var(--neutral-90); 5 | } 6 | 7 | .ia_thermometerComponent__unit, 8 | .ia_thermometerComponent__tickLabel, 9 | .ia_thermometerComponent__valueDisplay { 10 | font-size: 1.5rem; 11 | fill: var(--neutral-90); 12 | } 13 | 14 | .ia_thermometerComponent__liquid { 15 | fill: var(--seq-2); 16 | } 17 | -------------------------------------------------------------------------------- /theme/jar/palette/toggle-switch.css: -------------------------------------------------------------------------------- 1 | .ia_toggleSwitchComponent { 2 | color: var(--label); 3 | } 4 | 5 | .ia_toggleSwitchComponent--disabled { 6 | color: var(--label--disabled); 7 | } 8 | --------------------------------------------------------------------------------