first commit
132
journeymap/colorpalette.html
Normal file
@ -0,0 +1,132 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
JourneyMap Mod <journeymap.info> for Minecraft
|
||||
Copyright (c) 2011-2018 Techbrew Interactive, LLC <techbrew.net>. All Rights Reserved.
|
||||
-->
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>JourneyMap Color Palette</title>
|
||||
<meta name="author" content="journeymap.info">
|
||||
<style>
|
||||
html, body { height: 100% }
|
||||
body{font-family: Helvetica,Arial,sans-serif; font-size:11px}
|
||||
#header {text-align: center; border: 1px solid green; background-color: #efefef; padding-bottom: 10px;}
|
||||
#description {margin:10px; font-family: monospace; white-space: pre;}
|
||||
#generated {font-style: italic;}
|
||||
#toc{display: flex; flex-wrap: wrap; justify-content: center; }
|
||||
#toc h2 {display: flex; margin:10px}
|
||||
a.tocArrow {text-decoration: none; margin-left:10px; width:10px; padding:2px; background-color: #cccccc}
|
||||
.mod{display: flex; flex-flow: row wrap; }
|
||||
.mod h2 {flex: 1 100%;}
|
||||
.entry{flex: 1;padding:8px; border:1px solid transparent;}
|
||||
.entry:hover{border:1px solid black;}
|
||||
.blockInfo{font-size:10px; padding-bottom:4px}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div id="header">
|
||||
|
||||
<h1 id="title">JourneyMap Color Palette</h1>
|
||||
|
||||
<div id="overview">
|
||||
<div id="generated"></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div id="description">Put this file in the same directory as colorpalette.json to view the color palette.</div>
|
||||
|
||||
<div id="contents">
|
||||
|
||||
<h2><span id="colorCount"></span> Basic Colors</h2>
|
||||
|
||||
<h2>Resource Packs:</h2>
|
||||
<div id="resourcePacks"></div>
|
||||
|
||||
<hr/>
|
||||
|
||||
<h2>Mods:</h2>
|
||||
|
||||
<div id="modNames"></div>
|
||||
|
||||
<div id="toc"></div>
|
||||
|
||||
<hr/>
|
||||
|
||||
<div id="blockColors"></div>
|
||||
</div>
|
||||
|
||||
<script src="colorpalette.json"></script>
|
||||
|
||||
|
||||
<script language="JavaScript">
|
||||
|
||||
function getContrastYIQ(hexcolor){
|
||||
hexcolor = hexcolor.replace("#","");
|
||||
var r = parseInt(hexcolor.substr(0,2),16);
|
||||
var g = parseInt(hexcolor.substr(2,2),16);
|
||||
var b = parseInt(hexcolor.substr(4,2),16);
|
||||
var yiq = ((r*299)+(g*587)+(b*114))/1000;
|
||||
return (yiq >= 128) ? '#000000' : '#dddddd';
|
||||
}
|
||||
|
||||
if(typeof(colorpalette)=='undefined') {
|
||||
document.getElementById("overview").innerHTML = "";
|
||||
document.getElementById("contents").innerHTML = "";
|
||||
} else {
|
||||
document.getElementById("description").innerHTML = colorpalette.description.join("<br/>");
|
||||
document.getElementById("resourcePacks").innerHTML = colorpalette.resourcePacks;
|
||||
document.getElementById("modNames").innerHTML = colorpalette.modNames;
|
||||
document.getElementById("generated").innerHTML = colorpalette.generated;
|
||||
|
||||
var tocEl = document.getElementById("toc");
|
||||
var tableEl = document.getElementById("blockColors");
|
||||
var count = 0;
|
||||
var table = colorpalette.table;
|
||||
|
||||
for (var mod in table) {
|
||||
var modEl = document.createElement("div");
|
||||
modEl.className = "mod";
|
||||
modEl.innerHTML = "<h2 id='" + mod + "'>" + mod + "<a class='tocArrow' href='#toc'>↑</a></h2>";
|
||||
tableEl.appendChild(modEl);
|
||||
|
||||
var linkEl = document.createElement("h2");
|
||||
linkEl.innerHTML = "<a href='#" + mod + "'>" + mod + "</a>";
|
||||
tocEl.appendChild(linkEl);
|
||||
|
||||
for (var block in table[mod]) {
|
||||
for (var state in table[mod][block]) {
|
||||
|
||||
var entryEl = document.createElement("span");
|
||||
entryEl.className='entry';
|
||||
modEl.appendChild(entryEl);
|
||||
|
||||
var list = table[mod][block][state];
|
||||
var blockStateColor = {
|
||||
"color": list[0],
|
||||
"alpha": list[1] || 1
|
||||
}
|
||||
|
||||
var alphaInfo = (blockStateColor.alpha && blockStateColor.alpha<1) ? (" Alpha: " + blockStateColor.alpha) : "";
|
||||
var wrapState = "[" + (state.split(",").join(",​")) + "]";
|
||||
var labelColor = getContrastYIQ(blockStateColor.color);
|
||||
|
||||
entryEl.innerHTML = [mod + ":", block, wrapState, alphaInfo].join("​");
|
||||
entryEl.style = 'color: ' + labelColor + '; background-color:' + blockStateColor.color;
|
||||
entryEl.title = blockStateColor.color;
|
||||
count++;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
document.getElementById("colorCount").innerHTML = count;
|
||||
}
|
||||
</script>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
1
journeymap/colorpalette.json
Normal file
67
journeymap/config/5.10/journeymap.core.config
Normal file
@ -0,0 +1,67 @@
|
||||
// jm.config.file_header_1
|
||||
// jm.config.file_header_2
|
||||
// jm.config.file_header_5
|
||||
{
|
||||
"logLevel": "INFO",
|
||||
"autoMapPoll": "2000",
|
||||
"cacheAnimalsData": "3100",
|
||||
"cacheMobsData": "3000",
|
||||
"cachePlayerData": "1000",
|
||||
"cachePlayersData": "2000",
|
||||
"cacheVillagersData": "2200",
|
||||
"announceMod": "false",
|
||||
"checkUpdates": "false",
|
||||
"recordCacheStats": "false",
|
||||
"themeName": "Purist",
|
||||
"caveIgnoreGlass": "true",
|
||||
"mapBathymetry": "false",
|
||||
"mapWaterBiomeColors": "false",
|
||||
"mapTopography": "true",
|
||||
"mapBiome": "true",
|
||||
"mapTransparency": "true",
|
||||
"mapCaveLighting": "true",
|
||||
"mapAntialiasing": "true",
|
||||
"mapPlantShadows": "false",
|
||||
"mapPlants": "false",
|
||||
"mapCrops": "true",
|
||||
"mapBlendGrass": "true",
|
||||
"mapBlendFoliage": "true",
|
||||
"mapBlendWater": "false",
|
||||
"mapSurfaceAboveCaves": "true",
|
||||
"caveBlackAsClear": "false",
|
||||
"renderDistanceCaveMax": "0",
|
||||
"renderDistanceSurfaceMax": "0",
|
||||
"renderDelay": "2",
|
||||
"revealShape": "Circle",
|
||||
"alwaysMapCaves": "false",
|
||||
"alwaysMapSurface": "false",
|
||||
"tileHighDisplayQuality": "true",
|
||||
"maxAnimalsData": "128",
|
||||
"maxMobsData": "32",
|
||||
"maxPlayersData": "32",
|
||||
"maxVillagersData": "32",
|
||||
"hideSneakingEntities": "true",
|
||||
"hideSpectators": "false",
|
||||
"radarLateralDistance": "64",
|
||||
"radarVerticalDistance": "16",
|
||||
"tileRenderType": "1",
|
||||
"dataCachingEnabled": "true",
|
||||
"glErrorChecking": "false",
|
||||
"seedId": "true",
|
||||
"mappingEnabled": "true",
|
||||
"optionsManagerViewed": "5.10.3",
|
||||
"splashViewed": "5.10.3",
|
||||
"gridSpecs": {
|
||||
"day": "Squares,#fdedba,0.5,11,2",
|
||||
"night": "Squares,#8080ff,0.3,-1,-1",
|
||||
"underground": "Squares,#808080,0.3,-1,-1"
|
||||
},
|
||||
"colorPassive": "#bbbbbb",
|
||||
"colorHostile": "#ff0000",
|
||||
"colorPet": "#0077ff",
|
||||
"colorVillager": "#88e188",
|
||||
"colorPlayer": "#ffffff",
|
||||
"colorSelf": "#0000ff",
|
||||
"verboseColorPalette": "false",
|
||||
"configVersion": "5.10.3"
|
||||
}
|
34
journeymap/config/5.10/journeymap.fullmap.config
Normal file
@ -0,0 +1,34 @@
|
||||
// jm.config.file_header_1
|
||||
// jm.config.file_header_2
|
||||
// jm.config.file_header_5
|
||||
{
|
||||
"showKeys": "false",
|
||||
"showPlayerLoc": "true",
|
||||
"showMouseLoc": "true",
|
||||
"playerDisplay": "LargeIcons",
|
||||
"selfDisplayScale": "1.5",
|
||||
"playerDisplayScale": "2.0",
|
||||
"showPlayerHeading": "false",
|
||||
"mobDisplay": "LargeIcons",
|
||||
"mobDisplayScale": "2.0",
|
||||
"showMobHeading": "false",
|
||||
"showMobs": "false",
|
||||
"showAnimals": "true",
|
||||
"showVillagers": "false",
|
||||
"showPets": "false",
|
||||
"showPlayers": "true",
|
||||
"fontScale": "2.5",
|
||||
"showWaypointLabels": "true",
|
||||
"waypointLabelScale": "1.5",
|
||||
"waypointIconScale": "2.0",
|
||||
"locationFormatVerbose": "false",
|
||||
"locationFormat": "xz",
|
||||
"showWaypoints": "true",
|
||||
"showSelf": "true",
|
||||
"showGrid": "false",
|
||||
"showCaves": "true",
|
||||
"showEntityNames": "false",
|
||||
"preferredMapType": "day",
|
||||
"zoomLevel": "3",
|
||||
"configVersion": "5.10.3"
|
||||
}
|
60
journeymap/config/5.10/journeymap.minimap.config
Normal file
@ -0,0 +1,60 @@
|
||||
// jm.config.file_header_1
|
||||
// jm.config.file_header_2
|
||||
// jm.config.file_header_5
|
||||
{
|
||||
"gameTimeRealFormat": "HH:mm:ss",
|
||||
"systemTimeRealFormat": "HH:mm:ss",
|
||||
"enabled": "true",
|
||||
"shape": "Square",
|
||||
"showDayNight": "true",
|
||||
"info1Label": "jm.theme.labelsource.blank",
|
||||
"info2Label": "jm.theme.labelsource.gametime",
|
||||
"info3Label": "jm.theme.labelsource.location",
|
||||
"info4Label": "jm.theme.labelsource.biome",
|
||||
"infoSlotAlpha": "0.0",
|
||||
"positionX": "0.86640626",
|
||||
"positionY": "0.037962962",
|
||||
"sizePercent": "23",
|
||||
"frameAlpha": "80",
|
||||
"terrainAlpha": "100",
|
||||
"backgroundAlpha": "0.0",
|
||||
"orientation": "North",
|
||||
"compassFontScale": "2.0",
|
||||
"showCompass": "true",
|
||||
"showReticle": "false",
|
||||
"reticleOrientation": "Compass",
|
||||
"moveEffectIcons": "true",
|
||||
"effectTranslateX": "-138",
|
||||
"effectTranslateY": "3",
|
||||
"effectVertical": "false",
|
||||
"effectReversed": "false",
|
||||
"minimapKeyMovementSpeed": "0.001",
|
||||
"position": "Custom",
|
||||
"active": true,
|
||||
"playerDisplay": "LargeIcons",
|
||||
"selfDisplayScale": "1.5",
|
||||
"playerDisplayScale": "1.75",
|
||||
"showPlayerHeading": "false",
|
||||
"mobDisplay": "LargeIcons",
|
||||
"mobDisplayScale": "1.5",
|
||||
"showMobHeading": "false",
|
||||
"showMobs": "false",
|
||||
"showAnimals": "true",
|
||||
"showVillagers": "false",
|
||||
"showPets": "false",
|
||||
"showPlayers": "true",
|
||||
"fontScale": "3.0",
|
||||
"showWaypointLabels": "true",
|
||||
"waypointLabelScale": "1.5",
|
||||
"waypointIconScale": "2.0",
|
||||
"locationFormatVerbose": "false",
|
||||
"locationFormat": "xz",
|
||||
"showWaypoints": "true",
|
||||
"showSelf": "true",
|
||||
"showGrid": "false",
|
||||
"showCaves": "true",
|
||||
"showEntityNames": "false",
|
||||
"preferredMapType": "day",
|
||||
"zoomLevel": "2",
|
||||
"configVersion": "5.10.3"
|
||||
}
|
60
journeymap/config/5.10/journeymap.minimap2.config
Normal file
@ -0,0 +1,60 @@
|
||||
// jm.config.file_header_1
|
||||
// jm.config.file_header_2
|
||||
// jm.config.file_header_5
|
||||
{
|
||||
"gameTimeRealFormat": "HH:mm:ss",
|
||||
"systemTimeRealFormat": "HH:mm:ss",
|
||||
"enabled": "true",
|
||||
"shape": "Rectangle",
|
||||
"showDayNight": "true",
|
||||
"info1Label": "jm.theme.labelsource.blank",
|
||||
"info2Label": "jm.theme.labelsource.gametime",
|
||||
"info3Label": "jm.theme.labelsource.location",
|
||||
"info4Label": "jm.theme.labelsource.biome",
|
||||
"infoSlotAlpha": "0.0",
|
||||
"positionX": "0.74635416",
|
||||
"positionY": "0.033796296",
|
||||
"sizePercent": "25",
|
||||
"frameAlpha": "80",
|
||||
"terrainAlpha": "100",
|
||||
"backgroundAlpha": "0.0",
|
||||
"orientation": "North",
|
||||
"compassFontScale": "1.0",
|
||||
"showCompass": "true",
|
||||
"showReticle": "false",
|
||||
"reticleOrientation": "Compass",
|
||||
"moveEffectIcons": "true",
|
||||
"effectTranslateX": "-168",
|
||||
"effectTranslateY": "4",
|
||||
"effectVertical": "false",
|
||||
"effectReversed": "false",
|
||||
"minimapKeyMovementSpeed": "0.001",
|
||||
"position": "Custom",
|
||||
"active": false,
|
||||
"playerDisplay": "LargeIcons",
|
||||
"selfDisplayScale": "1.5",
|
||||
"playerDisplayScale": "1.75",
|
||||
"showPlayerHeading": "false",
|
||||
"mobDisplay": "LargeIcons",
|
||||
"mobDisplayScale": "1.5",
|
||||
"showMobHeading": "false",
|
||||
"showMobs": "false",
|
||||
"showAnimals": "true",
|
||||
"showVillagers": "false",
|
||||
"showPets": "false",
|
||||
"showPlayers": "true",
|
||||
"fontScale": "3.0",
|
||||
"showWaypointLabels": "true",
|
||||
"waypointLabelScale": "1.5",
|
||||
"waypointIconScale": "2.0",
|
||||
"locationFormatVerbose": "false",
|
||||
"locationFormat": "xz",
|
||||
"showWaypoints": "true",
|
||||
"showSelf": "true",
|
||||
"showGrid": "false",
|
||||
"showCaves": "true",
|
||||
"showEntityNames": "false",
|
||||
"preferredMapType": "night",
|
||||
"zoomLevel": "2",
|
||||
"configVersion": "5.10.3"
|
||||
}
|
10
journeymap/config/5.10/journeymap.topo.config
Normal file
@ -0,0 +1,10 @@
|
||||
// jm.config.file_header_1
|
||||
// jm.config.file_header_5
|
||||
{
|
||||
"showContour": "true",
|
||||
"landContour": "#3F250B",
|
||||
"waterContour": "#0000dd",
|
||||
"land": "#010c02,#041105,#071609,#0a1b0c,#0d200f,#102513,#132a16,#162f19,#19341c,#1b3a20,#1e3f23,#214426,#24492a,#274e2d,#2a5330,#2d5834,#375f41,#41674d,#4b6e5a,#557567,#5f7c73,#698480,#738b8d,#7c929a,#8699a6,#90a1b3,#9aa8c0,#a4afcc,#aeb6d9,#b8bee6,#c2c5f2,#ccccff,#cccfff,#ccd2ff,#ccd6ff,#ccd9ff,#ccdcff,#ccdfff,#cce2ff,#cce5ff,#cce9ff,#ccecff,#ccefff,#ccf2ff,#ccf5ff,#ccf9ff,#ccfcff,#ccffff,#cfffff,#d2ffff,#d6ffff,#d9ffff,#dcffff,#dfffff,#e2ffff,#e5ffff,#e9ffff,#ecffff,#efffff,#f2ffff,#f5ffff,#f9ffff,#fcffff,#ffffff",
|
||||
"water": "#000040,#02024e,#03035d,#05056b,#070779,#080887,#0a0a96,#0b0ba4,#1a1aaa,#2a2aaf,#3939b5,#4848bb,#5757c0,#6767c6,#7676cc,#8585d2,#9494d7,#a4a4dd,#b3b3e3,#c2c2e8,#d1d1ee,#d7d7f0,#ddddf2,#e2e2f4,#e8e8f6,#eeeef9,#f4f4fb,#f9f9ff,#f9f9ff,#f9f9ff,#f9f9ff,#f9f9ff",
|
||||
"configVersion": "5.10.3"
|
||||
}
|
32
journeymap/config/5.10/journeymap.waypoint.config
Normal file
@ -0,0 +1,32 @@
|
||||
// jm.config.file_header_1
|
||||
// jm.config.file_header_2
|
||||
// jm.config.file_header_5
|
||||
{
|
||||
"managerEnabled": "true",
|
||||
"beaconEnabled": "true",
|
||||
"showTexture": "true",
|
||||
"showStaticBeam": "true",
|
||||
"showRotatingBeam": "true",
|
||||
"showName": "true",
|
||||
"showDistance": "true",
|
||||
"autoHideLabel": "true",
|
||||
"showDeviationLabel": "false",
|
||||
"disableStrikeThrough": "false",
|
||||
"boldLabel": "false",
|
||||
"fontScale": "2.0",
|
||||
"textureSmall": "true",
|
||||
"shaderBeacon": "false",
|
||||
"maxDistance": "0",
|
||||
"minDistance": "4",
|
||||
"createDeathpoints": "true",
|
||||
"autoRemoveDeathpoints": "false",
|
||||
"autoRemoveDeathpointDistance": "16",
|
||||
"autoRemoveTempWaypoints": "2",
|
||||
"showDeathpointlabel": "true",
|
||||
"fullscreenDoubleClickToCreate": "true",
|
||||
"teleportCommand": "/tp {name} {x} {y} {z}",
|
||||
"dateFormat": "MM-dd-yyyy",
|
||||
"timeFormat": "HH:mm:ss",
|
||||
"managerDimensionFocus": "false",
|
||||
"configVersion": "5.10.3"
|
||||
}
|
8
journeymap/config/5.10/journeymap.webmap.config
Normal file
@ -0,0 +1,8 @@
|
||||
// jm.config.file_header_1
|
||||
// jm.config.file_header_2
|
||||
// jm.config.file_header_5
|
||||
{
|
||||
"enabled": "false",
|
||||
"port": "8080",
|
||||
"configVersion": "5.10.3"
|
||||
}
|
5
journeymap/icon/theme/default.theme.config
Normal file
@ -0,0 +1,5 @@
|
||||
{
|
||||
"directory": "flat",
|
||||
"filename": "OceanMonument",
|
||||
"name": "OceanMonument"
|
||||
}
|
427
journeymap/icon/theme/flat/DesertTemple.theme2.json
Normal file
@ -0,0 +1,427 @@
|
||||
{
|
||||
"schema": 2,
|
||||
"author": "techbrew",
|
||||
"name": "DesertTemple",
|
||||
"directory": "flat",
|
||||
"container": {
|
||||
"toolbar": {
|
||||
"horizontal": {
|
||||
"useThemeImages": true,
|
||||
"prefix": "h",
|
||||
"margin": 4,
|
||||
"padding": 0,
|
||||
"begin": {
|
||||
"width": 0,
|
||||
"height": 24,
|
||||
"color": "#361809",
|
||||
"alpha": 0.8
|
||||
},
|
||||
"inner": {
|
||||
"width": 24,
|
||||
"height": 24,
|
||||
"color": "#361809",
|
||||
"alpha": 0.8
|
||||
},
|
||||
"end": {
|
||||
"width": 0,
|
||||
"height": 24,
|
||||
"color": "#361809",
|
||||
"alpha": 0.8
|
||||
}
|
||||
},
|
||||
"vertical": {
|
||||
"useThemeImages": true,
|
||||
"prefix": "v",
|
||||
"margin": 4,
|
||||
"padding": 0,
|
||||
"begin": {
|
||||
"width": 24,
|
||||
"height": 0,
|
||||
"color": "#361809",
|
||||
"alpha": 0.8
|
||||
},
|
||||
"inner": {
|
||||
"width": 24,
|
||||
"height": 24,
|
||||
"color": "#361809",
|
||||
"alpha": 0.8
|
||||
},
|
||||
"end": {
|
||||
"width": 24,
|
||||
"height": 0,
|
||||
"color": "#361809",
|
||||
"alpha": 0.8
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"control": {
|
||||
"button": {
|
||||
"useThemeImages": true,
|
||||
"width": 24,
|
||||
"height": 24,
|
||||
"prefix": "flat_",
|
||||
"tooltipOnStyle": "§b",
|
||||
"tooltipOffStyle": "§7",
|
||||
"tooltipDisabledStyle": "§8",
|
||||
"iconOn": {
|
||||
"color": "#B7521E",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconOff": {
|
||||
"color": "#FFFFCD",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconHoverOn": {
|
||||
"color": "#aea87e",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconHoverOff": {
|
||||
"color": "#aea87e",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconDisabled": {
|
||||
"color": "#803915",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonOn": {
|
||||
"color": "#FFFFCD",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonOff": {
|
||||
"color": "#B7521E",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonHoverOn": {
|
||||
"color": "#FFFFCD",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonHoverOff": {
|
||||
"color": "#B7521E",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonDisabled": {
|
||||
"color": "#B7521E",
|
||||
"alpha": 1.0
|
||||
}
|
||||
},
|
||||
"toggle": {
|
||||
"useThemeImages": true,
|
||||
"width": 24,
|
||||
"height": 24,
|
||||
"prefix": "flat_",
|
||||
"tooltipOnStyle": "§b",
|
||||
"tooltipOffStyle": "§7",
|
||||
"tooltipDisabledStyle": "§8",
|
||||
"iconOn": {
|
||||
"color": "#B7521E",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconOff": {
|
||||
"color": "#FFFFCD",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconHoverOn": {
|
||||
"color": "#aea87e",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconHoverOff": {
|
||||
"color": "#aea87e",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconDisabled": {
|
||||
"color": "#803915",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonOn": {
|
||||
"color": "#FFFFCD",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonOff": {
|
||||
"color": "#B7521E",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonHoverOn": {
|
||||
"color": "#FFFFCD",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonHoverOff": {
|
||||
"color": "#B7521E",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonDisabled": {
|
||||
"color": "#803915",
|
||||
"alpha": 1.0
|
||||
}
|
||||
}
|
||||
},
|
||||
"fullscreen": {
|
||||
"background": {
|
||||
"color": "#803915",
|
||||
"alpha": 0.8
|
||||
},
|
||||
"statusLabel": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#361809",
|
||||
"alpha": 0.7
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#FFFFCD",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
}
|
||||
},
|
||||
"icon": {
|
||||
"width": 24,
|
||||
"height": 24,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"minimap": {
|
||||
"circle": {
|
||||
"rim256": {
|
||||
"width": 256,
|
||||
"height": 256,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"mask256": {
|
||||
"width": 256,
|
||||
"height": 256,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"rim512": {
|
||||
"width": 512,
|
||||
"height": 512,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"mask512": {
|
||||
"width": 512,
|
||||
"height": 512,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"rotates": false,
|
||||
"margin": 6,
|
||||
"labelTop": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#361809",
|
||||
"alpha": 0.7
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#FFFFCD",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"labelTopInside": false,
|
||||
"labelBottom": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#361809",
|
||||
"alpha": 0.7
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#FFFFCD",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"labelBottomInside": false,
|
||||
"compassLabel": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#361809",
|
||||
"alpha": 0.0
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#FFFFCD",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"compassPoint": {
|
||||
"width": 16,
|
||||
"height": 16,
|
||||
"color": "#803915",
|
||||
"alpha": 0.5
|
||||
},
|
||||
"compassPointLabelPad": 0,
|
||||
"compassPointOffset": -14.0,
|
||||
"compassShowNorth": true,
|
||||
"compassShowSouth": true,
|
||||
"compassShowEast": true,
|
||||
"compassShowWest": true,
|
||||
"waypointOffset": 0.0,
|
||||
"reticle": {
|
||||
"color": "#B7521E",
|
||||
"alpha": 0.4
|
||||
},
|
||||
"reticleHeading": {
|
||||
"color": "#B7521E",
|
||||
"alpha": 0.4
|
||||
},
|
||||
"reticleThickness": 1.25,
|
||||
"reticleHeadingThickness": 2.25,
|
||||
"reticleOffsetOuter": 30,
|
||||
"reticleOffsetInner": 20,
|
||||
"frame": {
|
||||
"color": "#803915",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"prefix": "flat_"
|
||||
},
|
||||
"square": {
|
||||
"topLeft": {
|
||||
"width": 8,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"top": {
|
||||
"width": 1,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"topRight": {
|
||||
"width": 8,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"right": {
|
||||
"width": 8,
|
||||
"height": 1,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"bottomRight": {
|
||||
"width": 8,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"bottom": {
|
||||
"width": 1,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"bottomLeft": {
|
||||
"width": 8,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"left": {
|
||||
"width": 8,
|
||||
"height": 1,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"margin": 6,
|
||||
"labelTop": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#361809",
|
||||
"alpha": 0.7
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#FFFFCD",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"labelTopInside": false,
|
||||
"labelBottom": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#361809",
|
||||
"alpha": 0.7
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#FFFFCD",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"labelBottomInside": false,
|
||||
"compassLabel": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#361809",
|
||||
"alpha": 0.0
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#FFFFCD",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"compassPoint": {
|
||||
"width": 16,
|
||||
"height": 16,
|
||||
"color": "#803915",
|
||||
"alpha": 0.5
|
||||
},
|
||||
"compassPointLabelPad": 0,
|
||||
"compassPointOffset": -12.0,
|
||||
"compassShowNorth": true,
|
||||
"compassShowSouth": true,
|
||||
"compassShowEast": true,
|
||||
"compassShowWest": true,
|
||||
"waypointOffset": 0.0,
|
||||
"reticle": {
|
||||
"color": "#B7521E",
|
||||
"alpha": 0.4
|
||||
},
|
||||
"reticleHeading": {
|
||||
"color": "#B7521E",
|
||||
"alpha": 0.4
|
||||
},
|
||||
"reticleThickness": 1.25,
|
||||
"reticleHeadingThickness": 2.25,
|
||||
"reticleOffsetOuter": 24,
|
||||
"reticleOffsetInner": 20,
|
||||
"frame": {
|
||||
"color": "#803915",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"prefix": "flat_"
|
||||
}
|
||||
}
|
||||
}
|
427
journeymap/icon/theme/flat/EndCity.theme2.json
Normal file
@ -0,0 +1,427 @@
|
||||
{
|
||||
"schema": 2,
|
||||
"author": "techbrew",
|
||||
"name": "EndCity",
|
||||
"directory": "flat",
|
||||
"container": {
|
||||
"toolbar": {
|
||||
"horizontal": {
|
||||
"useThemeImages": true,
|
||||
"prefix": "h",
|
||||
"margin": 4,
|
||||
"padding": 0,
|
||||
"begin": {
|
||||
"width": 0,
|
||||
"height": 24,
|
||||
"color": "#1F1D2D",
|
||||
"alpha": 0.8
|
||||
},
|
||||
"inner": {
|
||||
"width": 24,
|
||||
"height": 24,
|
||||
"color": "#1F1D2D",
|
||||
"alpha": 0.8
|
||||
},
|
||||
"end": {
|
||||
"width": 0,
|
||||
"height": 24,
|
||||
"color": "#1F1D2D",
|
||||
"alpha": 0.8
|
||||
}
|
||||
},
|
||||
"vertical": {
|
||||
"useThemeImages": true,
|
||||
"prefix": "v",
|
||||
"margin": 4,
|
||||
"padding": 0,
|
||||
"begin": {
|
||||
"width": 24,
|
||||
"height": 0,
|
||||
"color": "#1F1D2D",
|
||||
"alpha": 0.8
|
||||
},
|
||||
"inner": {
|
||||
"width": 24,
|
||||
"height": 24,
|
||||
"color": "#1F1D2D",
|
||||
"alpha": 0.8
|
||||
},
|
||||
"end": {
|
||||
"width": 24,
|
||||
"height": 0,
|
||||
"color": "#1F1D2D",
|
||||
"alpha": 0.8
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"control": {
|
||||
"button": {
|
||||
"useThemeImages": true,
|
||||
"width": 24,
|
||||
"height": 24,
|
||||
"prefix": "flat_",
|
||||
"tooltipOnStyle": "§b",
|
||||
"tooltipOffStyle": "§7",
|
||||
"tooltipDisabledStyle": "§8",
|
||||
"iconOn": {
|
||||
"color": "#5A5470",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconOff": {
|
||||
"color": "#EAEE9A",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconHoverOn": {
|
||||
"color": "#CEB46A",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconHoverOff": {
|
||||
"color": "#CEB46A",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconDisabled": {
|
||||
"color": "#362744",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonOn": {
|
||||
"color": "#EAEE9A",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonOff": {
|
||||
"color": "#5A5470",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonHoverOn": {
|
||||
"color": "#EAEE9A",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonHoverOff": {
|
||||
"color": "#5A5470",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonDisabled": {
|
||||
"color": "#5A5470",
|
||||
"alpha": 1.0
|
||||
}
|
||||
},
|
||||
"toggle": {
|
||||
"useThemeImages": true,
|
||||
"width": 24,
|
||||
"height": 24,
|
||||
"prefix": "flat_",
|
||||
"tooltipOnStyle": "§b",
|
||||
"tooltipOffStyle": "§7",
|
||||
"tooltipDisabledStyle": "§8",
|
||||
"iconOn": {
|
||||
"color": "#5A5470",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconOff": {
|
||||
"color": "#EAEE9A",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconHoverOn": {
|
||||
"color": "#CEB46A",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconHoverOff": {
|
||||
"color": "#CEB46A",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconDisabled": {
|
||||
"color": "#362744",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonOn": {
|
||||
"color": "#EAEE9A",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonOff": {
|
||||
"color": "#5A5470",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonHoverOn": {
|
||||
"color": "#EAEE9A",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonHoverOff": {
|
||||
"color": "#5A5470",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonDisabled": {
|
||||
"color": "#362744",
|
||||
"alpha": 1.0
|
||||
}
|
||||
}
|
||||
},
|
||||
"fullscreen": {
|
||||
"background": {
|
||||
"color": "#362744",
|
||||
"alpha": 0.8
|
||||
},
|
||||
"statusLabel": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#1F1D2D",
|
||||
"alpha": 0.7
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#EAEE9A",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
}
|
||||
},
|
||||
"icon": {
|
||||
"width": 24,
|
||||
"height": 24,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"minimap": {
|
||||
"circle": {
|
||||
"rim256": {
|
||||
"width": 256,
|
||||
"height": 256,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"mask256": {
|
||||
"width": 256,
|
||||
"height": 256,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"rim512": {
|
||||
"width": 512,
|
||||
"height": 512,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"mask512": {
|
||||
"width": 512,
|
||||
"height": 512,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"rotates": false,
|
||||
"margin": 6,
|
||||
"labelTop": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#1F1D2D",
|
||||
"alpha": 0.7
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#EAEE9A",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"labelTopInside": false,
|
||||
"labelBottom": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#1F1D2D",
|
||||
"alpha": 0.7
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#EAEE9A",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"labelBottomInside": false,
|
||||
"compassLabel": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#1F1D2D",
|
||||
"alpha": 0.0
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#EAEE9A",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"compassPoint": {
|
||||
"width": 16,
|
||||
"height": 16,
|
||||
"color": "#362744",
|
||||
"alpha": 0.5
|
||||
},
|
||||
"compassPointLabelPad": 0,
|
||||
"compassPointOffset": -14.0,
|
||||
"compassShowNorth": true,
|
||||
"compassShowSouth": true,
|
||||
"compassShowEast": true,
|
||||
"compassShowWest": true,
|
||||
"waypointOffset": 0.0,
|
||||
"reticle": {
|
||||
"color": "#5A5470",
|
||||
"alpha": 0.4
|
||||
},
|
||||
"reticleHeading": {
|
||||
"color": "#5A5470",
|
||||
"alpha": 0.4
|
||||
},
|
||||
"reticleThickness": 1.25,
|
||||
"reticleHeadingThickness": 2.25,
|
||||
"reticleOffsetOuter": 30,
|
||||
"reticleOffsetInner": 20,
|
||||
"frame": {
|
||||
"color": "#362744",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"prefix": "flat_"
|
||||
},
|
||||
"square": {
|
||||
"topLeft": {
|
||||
"width": 8,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"top": {
|
||||
"width": 1,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"topRight": {
|
||||
"width": 8,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"right": {
|
||||
"width": 8,
|
||||
"height": 1,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"bottomRight": {
|
||||
"width": 8,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"bottom": {
|
||||
"width": 1,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"bottomLeft": {
|
||||
"width": 8,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"left": {
|
||||
"width": 8,
|
||||
"height": 1,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"margin": 6,
|
||||
"labelTop": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#1F1D2D",
|
||||
"alpha": 0.7
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#EAEE9A",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"labelTopInside": false,
|
||||
"labelBottom": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#1F1D2D",
|
||||
"alpha": 0.7
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#EAEE9A",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"labelBottomInside": false,
|
||||
"compassLabel": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#1F1D2D",
|
||||
"alpha": 0.0
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#EAEE9A",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"compassPoint": {
|
||||
"width": 16,
|
||||
"height": 16,
|
||||
"color": "#362744",
|
||||
"alpha": 0.5
|
||||
},
|
||||
"compassPointLabelPad": 0,
|
||||
"compassPointOffset": -12.0,
|
||||
"compassShowNorth": true,
|
||||
"compassShowSouth": true,
|
||||
"compassShowEast": true,
|
||||
"compassShowWest": true,
|
||||
"waypointOffset": 0.0,
|
||||
"reticle": {
|
||||
"color": "#5A5470",
|
||||
"alpha": 0.4
|
||||
},
|
||||
"reticleHeading": {
|
||||
"color": "#5A5470",
|
||||
"alpha": 0.4
|
||||
},
|
||||
"reticleThickness": 1.25,
|
||||
"reticleHeadingThickness": 2.25,
|
||||
"reticleOffsetOuter": 24,
|
||||
"reticleOffsetInner": 20,
|
||||
"frame": {
|
||||
"color": "#362744",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"prefix": "flat_"
|
||||
}
|
||||
}
|
||||
}
|
427
journeymap/icon/theme/flat/ForestMansion.theme2.json
Normal file
@ -0,0 +1,427 @@
|
||||
{
|
||||
"schema": 2,
|
||||
"author": "techbrew",
|
||||
"name": "ForestMansion",
|
||||
"directory": "flat",
|
||||
"container": {
|
||||
"toolbar": {
|
||||
"horizontal": {
|
||||
"useThemeImages": true,
|
||||
"prefix": "h",
|
||||
"margin": 4,
|
||||
"padding": 0,
|
||||
"begin": {
|
||||
"width": 0,
|
||||
"height": 24,
|
||||
"color": "#061b06",
|
||||
"alpha": 0.8
|
||||
},
|
||||
"inner": {
|
||||
"width": 24,
|
||||
"height": 24,
|
||||
"color": "#061b06",
|
||||
"alpha": 0.8
|
||||
},
|
||||
"end": {
|
||||
"width": 0,
|
||||
"height": 24,
|
||||
"color": "#061b06",
|
||||
"alpha": 0.8
|
||||
}
|
||||
},
|
||||
"vertical": {
|
||||
"useThemeImages": true,
|
||||
"prefix": "v",
|
||||
"margin": 4,
|
||||
"padding": 0,
|
||||
"begin": {
|
||||
"width": 24,
|
||||
"height": 0,
|
||||
"color": "#061b06",
|
||||
"alpha": 0.8
|
||||
},
|
||||
"inner": {
|
||||
"width": 24,
|
||||
"height": 24,
|
||||
"color": "#061b06",
|
||||
"alpha": 0.8
|
||||
},
|
||||
"end": {
|
||||
"width": 24,
|
||||
"height": 0,
|
||||
"color": "#061b06",
|
||||
"alpha": 0.8
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"control": {
|
||||
"button": {
|
||||
"useThemeImages": true,
|
||||
"width": 24,
|
||||
"height": 24,
|
||||
"prefix": "flat_",
|
||||
"tooltipOnStyle": "§b",
|
||||
"tooltipOffStyle": "§7",
|
||||
"tooltipDisabledStyle": "§8",
|
||||
"iconOn": {
|
||||
"color": "#1b6f1b",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconOff": {
|
||||
"color": "#d2e7d2",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconHoverOn": {
|
||||
"color": "#7ab97a",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconHoverOff": {
|
||||
"color": "#7ab97a",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconDisabled": {
|
||||
"color": "#114511",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonOn": {
|
||||
"color": "#d2e7d2",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonOff": {
|
||||
"color": "#1b6f1b",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonHoverOn": {
|
||||
"color": "#d2e7d2",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonHoverOff": {
|
||||
"color": "#1b6f1b",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonDisabled": {
|
||||
"color": "#1b6f1b",
|
||||
"alpha": 1.0
|
||||
}
|
||||
},
|
||||
"toggle": {
|
||||
"useThemeImages": true,
|
||||
"width": 24,
|
||||
"height": 24,
|
||||
"prefix": "flat_",
|
||||
"tooltipOnStyle": "§b",
|
||||
"tooltipOffStyle": "§7",
|
||||
"tooltipDisabledStyle": "§8",
|
||||
"iconOn": {
|
||||
"color": "#1b6f1b",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconOff": {
|
||||
"color": "#d2e7d2",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconHoverOn": {
|
||||
"color": "#7ab97a",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconHoverOff": {
|
||||
"color": "#7ab97a",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconDisabled": {
|
||||
"color": "#114511",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonOn": {
|
||||
"color": "#d2e7d2",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonOff": {
|
||||
"color": "#1b6f1b",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonHoverOn": {
|
||||
"color": "#d2e7d2",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonHoverOff": {
|
||||
"color": "#1b6f1b",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonDisabled": {
|
||||
"color": "#114511",
|
||||
"alpha": 1.0
|
||||
}
|
||||
}
|
||||
},
|
||||
"fullscreen": {
|
||||
"background": {
|
||||
"color": "#114511",
|
||||
"alpha": 0.8
|
||||
},
|
||||
"statusLabel": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#061b06",
|
||||
"alpha": 0.7
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#d2e7d2",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
}
|
||||
},
|
||||
"icon": {
|
||||
"width": 24,
|
||||
"height": 24,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"minimap": {
|
||||
"circle": {
|
||||
"rim256": {
|
||||
"width": 256,
|
||||
"height": 256,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"mask256": {
|
||||
"width": 256,
|
||||
"height": 256,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"rim512": {
|
||||
"width": 512,
|
||||
"height": 512,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"mask512": {
|
||||
"width": 512,
|
||||
"height": 512,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"rotates": false,
|
||||
"margin": 6,
|
||||
"labelTop": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#061b06",
|
||||
"alpha": 0.7
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#d2e7d2",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"labelTopInside": false,
|
||||
"labelBottom": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#061b06",
|
||||
"alpha": 0.7
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#d2e7d2",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"labelBottomInside": false,
|
||||
"compassLabel": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#061b06",
|
||||
"alpha": 0.0
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#d2e7d2",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"compassPoint": {
|
||||
"width": 16,
|
||||
"height": 16,
|
||||
"color": "#114511",
|
||||
"alpha": 0.5
|
||||
},
|
||||
"compassPointLabelPad": 0,
|
||||
"compassPointOffset": -14.0,
|
||||
"compassShowNorth": true,
|
||||
"compassShowSouth": true,
|
||||
"compassShowEast": true,
|
||||
"compassShowWest": true,
|
||||
"waypointOffset": 0.0,
|
||||
"reticle": {
|
||||
"color": "#1b6f1b",
|
||||
"alpha": 0.4
|
||||
},
|
||||
"reticleHeading": {
|
||||
"color": "#1b6f1b",
|
||||
"alpha": 0.4
|
||||
},
|
||||
"reticleThickness": 1.25,
|
||||
"reticleHeadingThickness": 2.25,
|
||||
"reticleOffsetOuter": 30,
|
||||
"reticleOffsetInner": 20,
|
||||
"frame": {
|
||||
"color": "#114511",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"prefix": "flat_"
|
||||
},
|
||||
"square": {
|
||||
"topLeft": {
|
||||
"width": 8,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"top": {
|
||||
"width": 1,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"topRight": {
|
||||
"width": 8,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"right": {
|
||||
"width": 8,
|
||||
"height": 1,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"bottomRight": {
|
||||
"width": 8,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"bottom": {
|
||||
"width": 1,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"bottomLeft": {
|
||||
"width": 8,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"left": {
|
||||
"width": 8,
|
||||
"height": 1,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"margin": 6,
|
||||
"labelTop": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#061b06",
|
||||
"alpha": 0.7
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#d2e7d2",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"labelTopInside": false,
|
||||
"labelBottom": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#061b06",
|
||||
"alpha": 0.7
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#d2e7d2",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"labelBottomInside": false,
|
||||
"compassLabel": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#061b06",
|
||||
"alpha": 0.0
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#d2e7d2",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"compassPoint": {
|
||||
"width": 16,
|
||||
"height": 16,
|
||||
"color": "#114511",
|
||||
"alpha": 0.5
|
||||
},
|
||||
"compassPointLabelPad": 0,
|
||||
"compassPointOffset": -12.0,
|
||||
"compassShowNorth": true,
|
||||
"compassShowSouth": true,
|
||||
"compassShowEast": true,
|
||||
"compassShowWest": true,
|
||||
"waypointOffset": 0.0,
|
||||
"reticle": {
|
||||
"color": "#1b6f1b",
|
||||
"alpha": 0.4
|
||||
},
|
||||
"reticleHeading": {
|
||||
"color": "#1b6f1b",
|
||||
"alpha": 0.4
|
||||
},
|
||||
"reticleThickness": 1.25,
|
||||
"reticleHeadingThickness": 2.25,
|
||||
"reticleOffsetOuter": 24,
|
||||
"reticleOffsetInner": 20,
|
||||
"frame": {
|
||||
"color": "#114511",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"prefix": "flat_"
|
||||
}
|
||||
}
|
||||
}
|
427
journeymap/icon/theme/flat/NetherFortress.theme2.json
Normal file
@ -0,0 +1,427 @@
|
||||
{
|
||||
"schema": 2,
|
||||
"author": "techbrew",
|
||||
"name": "NetherFortress",
|
||||
"directory": "flat",
|
||||
"container": {
|
||||
"toolbar": {
|
||||
"horizontal": {
|
||||
"useThemeImages": true,
|
||||
"prefix": "h",
|
||||
"margin": 4,
|
||||
"padding": 0,
|
||||
"begin": {
|
||||
"width": 0,
|
||||
"height": 24,
|
||||
"color": "#3b0000",
|
||||
"alpha": 0.8
|
||||
},
|
||||
"inner": {
|
||||
"width": 24,
|
||||
"height": 24,
|
||||
"color": "#3b0000",
|
||||
"alpha": 0.8
|
||||
},
|
||||
"end": {
|
||||
"width": 0,
|
||||
"height": 24,
|
||||
"color": "#3b0000",
|
||||
"alpha": 0.8
|
||||
}
|
||||
},
|
||||
"vertical": {
|
||||
"useThemeImages": true,
|
||||
"prefix": "v",
|
||||
"margin": 4,
|
||||
"padding": 0,
|
||||
"begin": {
|
||||
"width": 24,
|
||||
"height": 0,
|
||||
"color": "#3b0000",
|
||||
"alpha": 0.8
|
||||
},
|
||||
"inner": {
|
||||
"width": 24,
|
||||
"height": 24,
|
||||
"color": "#3b0000",
|
||||
"alpha": 0.8
|
||||
},
|
||||
"end": {
|
||||
"width": 24,
|
||||
"height": 0,
|
||||
"color": "#3b0000",
|
||||
"alpha": 0.8
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"control": {
|
||||
"button": {
|
||||
"useThemeImages": true,
|
||||
"width": 24,
|
||||
"height": 24,
|
||||
"prefix": "flat_",
|
||||
"tooltipOnStyle": "§b",
|
||||
"tooltipOffStyle": "§7",
|
||||
"tooltipDisabledStyle": "§8",
|
||||
"iconOn": {
|
||||
"color": "#6f3634",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconOff": {
|
||||
"color": "#FFFF00",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconHoverOn": {
|
||||
"color": "#D2D200",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconHoverOff": {
|
||||
"color": "#D2D200",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconDisabled": {
|
||||
"color": "#760000",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonOn": {
|
||||
"color": "#FFFF00",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonOff": {
|
||||
"color": "#6f3634",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonHoverOn": {
|
||||
"color": "#FFFF00",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonHoverOff": {
|
||||
"color": "#6f3634",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonDisabled": {
|
||||
"color": "#6f3634",
|
||||
"alpha": 1.0
|
||||
}
|
||||
},
|
||||
"toggle": {
|
||||
"useThemeImages": true,
|
||||
"width": 24,
|
||||
"height": 24,
|
||||
"prefix": "flat_",
|
||||
"tooltipOnStyle": "§b",
|
||||
"tooltipOffStyle": "§7",
|
||||
"tooltipDisabledStyle": "§8",
|
||||
"iconOn": {
|
||||
"color": "#6f3634",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconOff": {
|
||||
"color": "#FFFF00",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconHoverOn": {
|
||||
"color": "#D2D200",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconHoverOff": {
|
||||
"color": "#D2D200",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconDisabled": {
|
||||
"color": "#760000",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonOn": {
|
||||
"color": "#FFFF00",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonOff": {
|
||||
"color": "#6f3634",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonHoverOn": {
|
||||
"color": "#FFFF00",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonHoverOff": {
|
||||
"color": "#6f3634",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonDisabled": {
|
||||
"color": "#760000",
|
||||
"alpha": 1.0
|
||||
}
|
||||
}
|
||||
},
|
||||
"fullscreen": {
|
||||
"background": {
|
||||
"color": "#760000",
|
||||
"alpha": 0.8
|
||||
},
|
||||
"statusLabel": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#3b0000",
|
||||
"alpha": 0.7
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#FFFF00",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
}
|
||||
},
|
||||
"icon": {
|
||||
"width": 24,
|
||||
"height": 24,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"minimap": {
|
||||
"circle": {
|
||||
"rim256": {
|
||||
"width": 256,
|
||||
"height": 256,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"mask256": {
|
||||
"width": 256,
|
||||
"height": 256,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"rim512": {
|
||||
"width": 512,
|
||||
"height": 512,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"mask512": {
|
||||
"width": 512,
|
||||
"height": 512,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"rotates": false,
|
||||
"margin": 6,
|
||||
"labelTop": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#3b0000",
|
||||
"alpha": 0.7
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#FFFF00",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"labelTopInside": false,
|
||||
"labelBottom": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#3b0000",
|
||||
"alpha": 0.7
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#FFFF00",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"labelBottomInside": false,
|
||||
"compassLabel": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#3b0000",
|
||||
"alpha": 0.0
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#FFFF00",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"compassPoint": {
|
||||
"width": 16,
|
||||
"height": 16,
|
||||
"color": "#760000",
|
||||
"alpha": 0.5
|
||||
},
|
||||
"compassPointLabelPad": 0,
|
||||
"compassPointOffset": -14.0,
|
||||
"compassShowNorth": true,
|
||||
"compassShowSouth": true,
|
||||
"compassShowEast": true,
|
||||
"compassShowWest": true,
|
||||
"waypointOffset": 0.0,
|
||||
"reticle": {
|
||||
"color": "#6f3634",
|
||||
"alpha": 0.4
|
||||
},
|
||||
"reticleHeading": {
|
||||
"color": "#6f3634",
|
||||
"alpha": 0.4
|
||||
},
|
||||
"reticleThickness": 1.25,
|
||||
"reticleHeadingThickness": 2.25,
|
||||
"reticleOffsetOuter": 30,
|
||||
"reticleOffsetInner": 20,
|
||||
"frame": {
|
||||
"color": "#760000",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"prefix": "flat_"
|
||||
},
|
||||
"square": {
|
||||
"topLeft": {
|
||||
"width": 8,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"top": {
|
||||
"width": 1,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"topRight": {
|
||||
"width": 8,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"right": {
|
||||
"width": 8,
|
||||
"height": 1,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"bottomRight": {
|
||||
"width": 8,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"bottom": {
|
||||
"width": 1,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"bottomLeft": {
|
||||
"width": 8,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"left": {
|
||||
"width": 8,
|
||||
"height": 1,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"margin": 6,
|
||||
"labelTop": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#3b0000",
|
||||
"alpha": 0.7
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#FFFF00",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"labelTopInside": false,
|
||||
"labelBottom": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#3b0000",
|
||||
"alpha": 0.7
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#FFFF00",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"labelBottomInside": false,
|
||||
"compassLabel": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#3b0000",
|
||||
"alpha": 0.0
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#FFFF00",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"compassPoint": {
|
||||
"width": 16,
|
||||
"height": 16,
|
||||
"color": "#760000",
|
||||
"alpha": 0.5
|
||||
},
|
||||
"compassPointLabelPad": 0,
|
||||
"compassPointOffset": -12.0,
|
||||
"compassShowNorth": true,
|
||||
"compassShowSouth": true,
|
||||
"compassShowEast": true,
|
||||
"compassShowWest": true,
|
||||
"waypointOffset": 0.0,
|
||||
"reticle": {
|
||||
"color": "#6f3634",
|
||||
"alpha": 0.4
|
||||
},
|
||||
"reticleHeading": {
|
||||
"color": "#6f3634",
|
||||
"alpha": 0.4
|
||||
},
|
||||
"reticleThickness": 1.25,
|
||||
"reticleHeadingThickness": 2.25,
|
||||
"reticleOffsetOuter": 24,
|
||||
"reticleOffsetInner": 20,
|
||||
"frame": {
|
||||
"color": "#760000",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"prefix": "flat_"
|
||||
}
|
||||
}
|
||||
}
|
427
journeymap/icon/theme/flat/OceanMonument.theme2.json
Normal file
@ -0,0 +1,427 @@
|
||||
{
|
||||
"schema": 2,
|
||||
"author": "techbrew",
|
||||
"name": "OceanMonument",
|
||||
"directory": "flat",
|
||||
"container": {
|
||||
"toolbar": {
|
||||
"horizontal": {
|
||||
"useThemeImages": true,
|
||||
"prefix": "h",
|
||||
"margin": 4,
|
||||
"padding": 0,
|
||||
"begin": {
|
||||
"width": 0,
|
||||
"height": 24,
|
||||
"color": "#0e1239",
|
||||
"alpha": 0.8
|
||||
},
|
||||
"inner": {
|
||||
"width": 24,
|
||||
"height": 24,
|
||||
"color": "#0e1239",
|
||||
"alpha": 0.8
|
||||
},
|
||||
"end": {
|
||||
"width": 0,
|
||||
"height": 24,
|
||||
"color": "#0e1239",
|
||||
"alpha": 0.8
|
||||
}
|
||||
},
|
||||
"vertical": {
|
||||
"useThemeImages": true,
|
||||
"prefix": "v",
|
||||
"margin": 4,
|
||||
"padding": 0,
|
||||
"begin": {
|
||||
"width": 24,
|
||||
"height": 0,
|
||||
"color": "#0e1239",
|
||||
"alpha": 0.8
|
||||
},
|
||||
"inner": {
|
||||
"width": 24,
|
||||
"height": 24,
|
||||
"color": "#0e1239",
|
||||
"alpha": 0.8
|
||||
},
|
||||
"end": {
|
||||
"width": 24,
|
||||
"height": 0,
|
||||
"color": "#0e1239",
|
||||
"alpha": 0.8
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"control": {
|
||||
"button": {
|
||||
"useThemeImages": true,
|
||||
"width": 24,
|
||||
"height": 24,
|
||||
"prefix": "flat_",
|
||||
"tooltipOnStyle": "§b",
|
||||
"tooltipOffStyle": "§7",
|
||||
"tooltipDisabledStyle": "§8",
|
||||
"iconOn": {
|
||||
"color": "#303dc1",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconOff": {
|
||||
"color": "#dfebec",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconHoverOn": {
|
||||
"color": "#afcecf",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconHoverOff": {
|
||||
"color": "#afcecf",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconDisabled": {
|
||||
"color": "#212a87",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonOn": {
|
||||
"color": "#dfebec",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonOff": {
|
||||
"color": "#303dc1",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonHoverOn": {
|
||||
"color": "#dfebec",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonHoverOff": {
|
||||
"color": "#303dc1",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonDisabled": {
|
||||
"color": "#303dc1",
|
||||
"alpha": 1.0
|
||||
}
|
||||
},
|
||||
"toggle": {
|
||||
"useThemeImages": true,
|
||||
"width": 24,
|
||||
"height": 24,
|
||||
"prefix": "flat_",
|
||||
"tooltipOnStyle": "§b",
|
||||
"tooltipOffStyle": "§7",
|
||||
"tooltipDisabledStyle": "§8",
|
||||
"iconOn": {
|
||||
"color": "#303dc1",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconOff": {
|
||||
"color": "#dfebec",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconHoverOn": {
|
||||
"color": "#afcecf",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconHoverOff": {
|
||||
"color": "#afcecf",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconDisabled": {
|
||||
"color": "#555555",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonOn": {
|
||||
"color": "#dfebec",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonOff": {
|
||||
"color": "#303dc1",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonHoverOn": {
|
||||
"color": "#dfebec",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonHoverOff": {
|
||||
"color": "#303dc1",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonDisabled": {
|
||||
"color": "#212a87",
|
||||
"alpha": 1.0
|
||||
}
|
||||
}
|
||||
},
|
||||
"fullscreen": {
|
||||
"background": {
|
||||
"color": "#212a87",
|
||||
"alpha": 0.8
|
||||
},
|
||||
"statusLabel": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#0e1239",
|
||||
"alpha": 0.7
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#dfebec",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
}
|
||||
},
|
||||
"icon": {
|
||||
"width": 24,
|
||||
"height": 24,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"minimap": {
|
||||
"circle": {
|
||||
"rim256": {
|
||||
"width": 256,
|
||||
"height": 256,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"mask256": {
|
||||
"width": 256,
|
||||
"height": 256,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"rim512": {
|
||||
"width": 512,
|
||||
"height": 512,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"mask512": {
|
||||
"width": 512,
|
||||
"height": 512,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"rotates": false,
|
||||
"margin": 6,
|
||||
"labelTop": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#0e1239",
|
||||
"alpha": 0.7
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#dfebec",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"labelTopInside": false,
|
||||
"labelBottom": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#0e1239",
|
||||
"alpha": 0.7
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#dfebec",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"labelBottomInside": false,
|
||||
"compassLabel": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#0e1239",
|
||||
"alpha": 0.0
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#dfebec",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"compassPoint": {
|
||||
"width": 16,
|
||||
"height": 16,
|
||||
"color": "#212a87",
|
||||
"alpha": 0.5
|
||||
},
|
||||
"compassPointLabelPad": 0,
|
||||
"compassPointOffset": -14.0,
|
||||
"compassShowNorth": true,
|
||||
"compassShowSouth": true,
|
||||
"compassShowEast": true,
|
||||
"compassShowWest": true,
|
||||
"waypointOffset": 0.0,
|
||||
"reticle": {
|
||||
"color": "#303dc1",
|
||||
"alpha": 0.4
|
||||
},
|
||||
"reticleHeading": {
|
||||
"color": "#303dc1",
|
||||
"alpha": 0.4
|
||||
},
|
||||
"reticleThickness": 1.25,
|
||||
"reticleHeadingThickness": 2.25,
|
||||
"reticleOffsetOuter": 30,
|
||||
"reticleOffsetInner": 20,
|
||||
"frame": {
|
||||
"color": "#212a87",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"prefix": "flat_"
|
||||
},
|
||||
"square": {
|
||||
"topLeft": {
|
||||
"width": 8,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"top": {
|
||||
"width": 1,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"topRight": {
|
||||
"width": 8,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"right": {
|
||||
"width": 8,
|
||||
"height": 1,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"bottomRight": {
|
||||
"width": 8,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"bottom": {
|
||||
"width": 1,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"bottomLeft": {
|
||||
"width": 8,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"left": {
|
||||
"width": 8,
|
||||
"height": 1,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"margin": 6,
|
||||
"labelTop": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#0e1239",
|
||||
"alpha": 0.7
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#dfebec",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"labelTopInside": false,
|
||||
"labelBottom": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#0e1239",
|
||||
"alpha": 0.7
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#dfebec",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"labelBottomInside": false,
|
||||
"compassLabel": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#0e1239",
|
||||
"alpha": 0.0
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#dfebec",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"compassPoint": {
|
||||
"width": 16,
|
||||
"height": 16,
|
||||
"color": "#212a87",
|
||||
"alpha": 0.5
|
||||
},
|
||||
"compassPointLabelPad": 0,
|
||||
"compassPointOffset": -12.0,
|
||||
"compassShowNorth": true,
|
||||
"compassShowSouth": true,
|
||||
"compassShowEast": true,
|
||||
"compassShowWest": true,
|
||||
"waypointOffset": 0.0,
|
||||
"reticle": {
|
||||
"color": "#303dc1",
|
||||
"alpha": 0.4
|
||||
},
|
||||
"reticleHeading": {
|
||||
"color": "#303dc1",
|
||||
"alpha": 0.4
|
||||
},
|
||||
"reticleThickness": 1.25,
|
||||
"reticleHeadingThickness": 2.25,
|
||||
"reticleOffsetOuter": 24,
|
||||
"reticleOffsetInner": 20,
|
||||
"frame": {
|
||||
"color": "#212a87",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"prefix": "flat_"
|
||||
}
|
||||
}
|
||||
}
|
427
journeymap/icon/theme/flat/Purist.theme2.json
Normal file
@ -0,0 +1,427 @@
|
||||
{
|
||||
"schema": 2,
|
||||
"author": "techbrew",
|
||||
"name": "Purist",
|
||||
"directory": "flat",
|
||||
"container": {
|
||||
"toolbar": {
|
||||
"horizontal": {
|
||||
"useThemeImages": true,
|
||||
"prefix": "h",
|
||||
"margin": 4,
|
||||
"padding": 0,
|
||||
"begin": {
|
||||
"width": 0,
|
||||
"height": 20,
|
||||
"color": "#000000",
|
||||
"alpha": 0.0
|
||||
},
|
||||
"inner": {
|
||||
"width": 20,
|
||||
"height": 20,
|
||||
"color": "#000000",
|
||||
"alpha": 0.0
|
||||
},
|
||||
"end": {
|
||||
"width": 0,
|
||||
"height": 20,
|
||||
"color": "#000000",
|
||||
"alpha": 0.0
|
||||
}
|
||||
},
|
||||
"vertical": {
|
||||
"useThemeImages": true,
|
||||
"prefix": "v",
|
||||
"margin": 4,
|
||||
"padding": 0,
|
||||
"begin": {
|
||||
"width": 20,
|
||||
"height": 0,
|
||||
"color": "#000000",
|
||||
"alpha": 0.0
|
||||
},
|
||||
"inner": {
|
||||
"width": 20,
|
||||
"height": 20,
|
||||
"color": "#000000",
|
||||
"alpha": 0.0
|
||||
},
|
||||
"end": {
|
||||
"width": 20,
|
||||
"height": 0,
|
||||
"color": "#000000",
|
||||
"alpha": 0.0
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"control": {
|
||||
"button": {
|
||||
"useThemeImages": false,
|
||||
"width": 20,
|
||||
"height": 20,
|
||||
"prefix": "",
|
||||
"tooltipOnStyle": "§b",
|
||||
"tooltipOffStyle": "§7",
|
||||
"tooltipDisabledStyle": "§8",
|
||||
"iconOn": {
|
||||
"color": "#aaaaaa",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconOff": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconHoverOn": {
|
||||
"color": "#00ffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconHoverOff": {
|
||||
"color": "#00ffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconDisabled": {
|
||||
"color": "#aaaaaa",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonOn": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonOff": {
|
||||
"color": "#aaaaaa",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonHoverOn": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonHoverOff": {
|
||||
"color": "#aaaaaa",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonDisabled": {
|
||||
"color": "#aaaaaa",
|
||||
"alpha": 1.0
|
||||
}
|
||||
},
|
||||
"toggle": {
|
||||
"useThemeImages": false,
|
||||
"width": 20,
|
||||
"height": 20,
|
||||
"prefix": "",
|
||||
"tooltipOnStyle": "§b",
|
||||
"tooltipOffStyle": "§7",
|
||||
"tooltipDisabledStyle": "§8",
|
||||
"iconOn": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconOff": {
|
||||
"color": "#aaaaaa",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconHoverOn": {
|
||||
"color": "#00ffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconHoverOff": {
|
||||
"color": "#00ffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconDisabled": {
|
||||
"color": "#aaaaaa",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonOn": {
|
||||
"color": "#aaaaaa",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonOff": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonHoverOn": {
|
||||
"color": "#aaaaaa",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonHoverOff": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonDisabled": {
|
||||
"color": "#aaaaaa",
|
||||
"alpha": 1.0
|
||||
}
|
||||
}
|
||||
},
|
||||
"fullscreen": {
|
||||
"background": {
|
||||
"color": "#222222",
|
||||
"alpha": 0.8
|
||||
},
|
||||
"statusLabel": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#222222",
|
||||
"alpha": 0.6
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#dddddd",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
}
|
||||
},
|
||||
"icon": {
|
||||
"width": 20,
|
||||
"height": 20,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"minimap": {
|
||||
"circle": {
|
||||
"rim256": {
|
||||
"width": 256,
|
||||
"height": 256,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"mask256": {
|
||||
"width": 256,
|
||||
"height": 256,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"rim512": {
|
||||
"width": 512,
|
||||
"height": 512,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"mask512": {
|
||||
"width": 512,
|
||||
"height": 512,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"rotates": false,
|
||||
"margin": 6,
|
||||
"labelTop": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#555555",
|
||||
"alpha": 0.6
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#cccccc",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"labelTopInside": false,
|
||||
"labelBottom": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#55555",
|
||||
"alpha": 0.6
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#cccccc",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"labelBottomInside": false,
|
||||
"compassLabel": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#222222",
|
||||
"alpha": 0.5
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#cccccc",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"compassPoint": {
|
||||
"width": 16,
|
||||
"height": 16,
|
||||
"color": "#cccccc",
|
||||
"alpha": 0.5
|
||||
},
|
||||
"compassPointLabelPad": 0,
|
||||
"compassPointOffset": -14.0,
|
||||
"compassShowNorth": true,
|
||||
"compassShowSouth": true,
|
||||
"compassShowEast": true,
|
||||
"compassShowWest": true,
|
||||
"waypointOffset": 0.0,
|
||||
"reticle": {
|
||||
"color": "#222222",
|
||||
"alpha": 0.4
|
||||
},
|
||||
"reticleHeading": {
|
||||
"color": "#222222",
|
||||
"alpha": 0.4
|
||||
},
|
||||
"reticleThickness": 1.25,
|
||||
"reticleHeadingThickness": 2.25,
|
||||
"reticleOffsetOuter": 30,
|
||||
"reticleOffsetInner": 20,
|
||||
"frame": {
|
||||
"color": "#cccccc",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"prefix": "pur_"
|
||||
},
|
||||
"square": {
|
||||
"topLeft": {
|
||||
"width": 8,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"top": {
|
||||
"width": 1,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"topRight": {
|
||||
"width": 8,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"right": {
|
||||
"width": 8,
|
||||
"height": 1,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"bottomRight": {
|
||||
"width": 8,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"bottom": {
|
||||
"width": 1,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"bottomLeft": {
|
||||
"width": 8,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"left": {
|
||||
"width": 8,
|
||||
"height": 1,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"margin": 6,
|
||||
"labelTop": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#555555",
|
||||
"alpha": 0.6
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#cccccc",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"labelTopInside": false,
|
||||
"labelBottom": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#55555",
|
||||
"alpha": 0.6
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#cccccc",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"labelBottomInside": false,
|
||||
"compassLabel": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#222222",
|
||||
"alpha": 0.5
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#cccccc",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"compassPoint": {
|
||||
"width": 16,
|
||||
"height": 16,
|
||||
"color": "#cccccc",
|
||||
"alpha": 0.5
|
||||
},
|
||||
"compassPointLabelPad": 0,
|
||||
"compassPointOffset": -12.0,
|
||||
"compassShowNorth": true,
|
||||
"compassShowSouth": true,
|
||||
"compassShowEast": true,
|
||||
"compassShowWest": true,
|
||||
"waypointOffset": 0.0,
|
||||
"reticle": {
|
||||
"color": "#222222",
|
||||
"alpha": 0.4
|
||||
},
|
||||
"reticleHeading": {
|
||||
"color": "#222222",
|
||||
"alpha": 0.4
|
||||
},
|
||||
"reticleThickness": 1.25,
|
||||
"reticleHeadingThickness": 2.25,
|
||||
"reticleOffsetOuter": 24,
|
||||
"reticleOffsetInner": 20,
|
||||
"frame": {
|
||||
"color": "#cccccc",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"prefix": "pur_"
|
||||
}
|
||||
}
|
||||
}
|
427
journeymap/icon/theme/flat/Stronghold.theme2.json
Normal file
@ -0,0 +1,427 @@
|
||||
{
|
||||
"schema": 2,
|
||||
"author": "techbrew",
|
||||
"name": "Stronghold",
|
||||
"directory": "flat",
|
||||
"container": {
|
||||
"toolbar": {
|
||||
"horizontal": {
|
||||
"useThemeImages": true,
|
||||
"prefix": "h",
|
||||
"margin": 4,
|
||||
"padding": 0,
|
||||
"begin": {
|
||||
"width": 0,
|
||||
"height": 24,
|
||||
"color": "#0a1d33",
|
||||
"alpha": 0.8
|
||||
},
|
||||
"inner": {
|
||||
"width": 24,
|
||||
"height": 24,
|
||||
"color": "#111111",
|
||||
"alpha": 0.5
|
||||
},
|
||||
"end": {
|
||||
"width": 0,
|
||||
"height": 24,
|
||||
"color": "#0a1d33",
|
||||
"alpha": 0.8
|
||||
}
|
||||
},
|
||||
"vertical": {
|
||||
"useThemeImages": true,
|
||||
"prefix": "v",
|
||||
"margin": 4,
|
||||
"padding": 0,
|
||||
"begin": {
|
||||
"width": 24,
|
||||
"height": 0,
|
||||
"color": "#0a1d33",
|
||||
"alpha": 0.8
|
||||
},
|
||||
"inner": {
|
||||
"width": 24,
|
||||
"height": 24,
|
||||
"color": "#111111",
|
||||
"alpha": 0.5
|
||||
},
|
||||
"end": {
|
||||
"width": 24,
|
||||
"height": 0,
|
||||
"color": "#0a1d33",
|
||||
"alpha": 0.8
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"control": {
|
||||
"button": {
|
||||
"useThemeImages": true,
|
||||
"width": 24,
|
||||
"height": 24,
|
||||
"prefix": "flat_",
|
||||
"tooltipOnStyle": "§b",
|
||||
"tooltipOffStyle": "§7",
|
||||
"tooltipDisabledStyle": "§8",
|
||||
"iconOn": {
|
||||
"color": "#222222",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconOff": {
|
||||
"color": "#000000",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconHoverOn": {
|
||||
"color": "#cccccc",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconHoverOff": {
|
||||
"color": "#cccccc",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconDisabled": {
|
||||
"color": "#cccccc",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonOn": {
|
||||
"color": "#000000",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonOff": {
|
||||
"color": "#cccccc",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonHoverOn": {
|
||||
"color": "#000000",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonHoverOff": {
|
||||
"color": "#222222",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonDisabled": {
|
||||
"color": "#111111",
|
||||
"alpha": 1.0
|
||||
}
|
||||
},
|
||||
"toggle": {
|
||||
"useThemeImages": true,
|
||||
"width": 24,
|
||||
"height": 24,
|
||||
"prefix": "flat_",
|
||||
"tooltipOnStyle": "§b",
|
||||
"tooltipOffStyle": "§7",
|
||||
"tooltipDisabledStyle": "§8",
|
||||
"iconOn": {
|
||||
"color": "#cccccc",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconOff": {
|
||||
"color": "#555555",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconHoverOn": {
|
||||
"color": "#cccccc",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconHoverOff": {
|
||||
"color": "#cccccc",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"iconDisabled": {
|
||||
"color": "#111111",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonOn": {
|
||||
"color": "#222222",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonOff": {
|
||||
"color": "#222222",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonHoverOn": {
|
||||
"color": "#000000",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonHoverOff": {
|
||||
"color": "#222222",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"buttonDisabled": {
|
||||
"color": "#111111",
|
||||
"alpha": 1.0
|
||||
}
|
||||
}
|
||||
},
|
||||
"fullscreen": {
|
||||
"background": {
|
||||
"color": "#111111",
|
||||
"alpha": 0.8
|
||||
},
|
||||
"statusLabel": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#111111",
|
||||
"alpha": 0.7
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#cccccc",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
}
|
||||
},
|
||||
"icon": {
|
||||
"width": 24,
|
||||
"height": 24,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"minimap": {
|
||||
"circle": {
|
||||
"rim256": {
|
||||
"width": 256,
|
||||
"height": 256,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"mask256": {
|
||||
"width": 256,
|
||||
"height": 256,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"rim512": {
|
||||
"width": 512,
|
||||
"height": 512,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"mask512": {
|
||||
"width": 512,
|
||||
"height": 512,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"rotates": false,
|
||||
"margin": 6,
|
||||
"labelTop": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#000000",
|
||||
"alpha": 0.7
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"labelTopInside": false,
|
||||
"labelBottom": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#000000",
|
||||
"alpha": 0.7
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"labelBottomInside": false,
|
||||
"compassLabel": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#000000",
|
||||
"alpha": 0.0
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"compassPoint": {
|
||||
"width": 16,
|
||||
"height": 16,
|
||||
"color": "#111111",
|
||||
"alpha": 0.5
|
||||
},
|
||||
"compassPointLabelPad": 0,
|
||||
"compassPointOffset": -14.0,
|
||||
"compassShowNorth": true,
|
||||
"compassShowSouth": true,
|
||||
"compassShowEast": true,
|
||||
"compassShowWest": true,
|
||||
"waypointOffset": 0.0,
|
||||
"reticle": {
|
||||
"color": "#222222",
|
||||
"alpha": 0.4
|
||||
},
|
||||
"reticleHeading": {
|
||||
"color": "#222222",
|
||||
"alpha": 0.4
|
||||
},
|
||||
"reticleThickness": 1.25,
|
||||
"reticleHeadingThickness": 2.25,
|
||||
"reticleOffsetOuter": 30,
|
||||
"reticleOffsetInner": 20,
|
||||
"frame": {
|
||||
"color": "#111111",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"prefix": "flat_"
|
||||
},
|
||||
"square": {
|
||||
"topLeft": {
|
||||
"width": 8,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"top": {
|
||||
"width": 1,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"topRight": {
|
||||
"width": 8,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"right": {
|
||||
"width": 8,
|
||||
"height": 1,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"bottomRight": {
|
||||
"width": 8,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"bottom": {
|
||||
"width": 1,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"bottomLeft": {
|
||||
"width": 8,
|
||||
"height": 8,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"left": {
|
||||
"width": 8,
|
||||
"height": 1,
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"margin": 6,
|
||||
"labelTop": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#000000",
|
||||
"alpha": 0.7
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"labelTopInside": false,
|
||||
"labelBottom": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#000000",
|
||||
"alpha": 0.7
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"labelBottomInside": false,
|
||||
"compassLabel": {
|
||||
"margin": 0,
|
||||
"background": {
|
||||
"color": "#000000",
|
||||
"alpha": 0.0
|
||||
},
|
||||
"foreground": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"highlight": {
|
||||
"color": "#ffffff",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"shadow": false
|
||||
},
|
||||
"compassPoint": {
|
||||
"width": 16,
|
||||
"height": 16,
|
||||
"color": "#111111",
|
||||
"alpha": 0.5
|
||||
},
|
||||
"compassPointLabelPad": 0,
|
||||
"compassPointOffset": -12.0,
|
||||
"compassShowNorth": true,
|
||||
"compassShowSouth": true,
|
||||
"compassShowEast": true,
|
||||
"compassShowWest": true,
|
||||
"waypointOffset": 0.0,
|
||||
"reticle": {
|
||||
"color": "#222222",
|
||||
"alpha": 0.4
|
||||
},
|
||||
"reticleHeading": {
|
||||
"color": "#222222",
|
||||
"alpha": 0.4
|
||||
},
|
||||
"reticleThickness": 1.25,
|
||||
"reticleHeadingThickness": 2.25,
|
||||
"reticleOffsetOuter": 24,
|
||||
"reticleOffsetInner": 20,
|
||||
"frame": {
|
||||
"color": "#111111",
|
||||
"alpha": 1.0
|
||||
},
|
||||
"prefix": "flat_"
|
||||
}
|
||||
}
|
||||
}
|
BIN
journeymap/icon/theme/flat/container/htoolbar_begin.png
Normal file
After Width: | Height: | Size: 148 B |
BIN
journeymap/icon/theme/flat/container/htoolbar_end.png
Normal file
After Width: | Height: | Size: 148 B |
BIN
journeymap/icon/theme/flat/container/htoolbar_inner.png
Normal file
After Width: | Height: | Size: 199 B |
BIN
journeymap/icon/theme/flat/container/vtoolbar_begin.png
Normal file
After Width: | Height: | Size: 145 B |
BIN
journeymap/icon/theme/flat/container/vtoolbar_end.png
Normal file
After Width: | Height: | Size: 145 B |
BIN
journeymap/icon/theme/flat/container/vtoolbar_inner.png
Normal file
After Width: | Height: | Size: 199 B |
BIN
journeymap/icon/theme/flat/control/flat_button_disabled.png
Normal file
After Width: | Height: | Size: 399 B |
BIN
journeymap/icon/theme/flat/control/flat_button_hover.png
Normal file
After Width: | Height: | Size: 399 B |
BIN
journeymap/icon/theme/flat/control/flat_button_off.png
Normal file
After Width: | Height: | Size: 399 B |
BIN
journeymap/icon/theme/flat/control/flat_button_on.png
Normal file
After Width: | Height: | Size: 399 B |
BIN
journeymap/icon/theme/flat/control/flat_toggle_disabled.png
Normal file
After Width: | Height: | Size: 667 B |
BIN
journeymap/icon/theme/flat/control/flat_toggle_hover.png
Normal file
After Width: | Height: | Size: 611 B |
BIN
journeymap/icon/theme/flat/control/flat_toggle_off.png
Normal file
After Width: | Height: | Size: 667 B |
BIN
journeymap/icon/theme/flat/control/flat_toggle_on.png
Normal file
After Width: | Height: | Size: 611 B |
BIN
journeymap/icon/theme/flat/icon/about.png
Normal file
After Width: | Height: | Size: 651 B |
BIN
journeymap/icon/theme/flat/icon/actions.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
journeymap/icon/theme/flat/icon/alert.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
journeymap/icon/theme/flat/icon/animals.png
Normal file
After Width: | Height: | Size: 834 B |
BIN
journeymap/icon/theme/flat/icon/automap.png
Normal file
After Width: | Height: | Size: 591 B |
BIN
journeymap/icon/theme/flat/icon/biome.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
journeymap/icon/theme/flat/icon/browser.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
journeymap/icon/theme/flat/icon/caves.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
journeymap/icon/theme/flat/icon/close.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
journeymap/icon/theme/flat/icon/day.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
journeymap/icon/theme/flat/icon/delete.png
Normal file
After Width: | Height: | Size: 939 B |
BIN
journeymap/icon/theme/flat/icon/disable.png
Normal file
After Width: | Height: | Size: 833 B |
BIN
journeymap/icon/theme/flat/icon/follow.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
journeymap/icon/theme/flat/icon/grid.png
Normal file
After Width: | Height: | Size: 514 B |
BIN
journeymap/icon/theme/flat/icon/keys.png
Normal file
After Width: | Height: | Size: 456 B |
BIN
journeymap/icon/theme/flat/icon/layers.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
journeymap/icon/theme/flat/icon/monsters.png
Normal file
After Width: | Height: | Size: 482 B |
BIN
journeymap/icon/theme/flat/icon/night.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
journeymap/icon/theme/flat/icon/options.png
Normal file
After Width: | Height: | Size: 644 B |
BIN
journeymap/icon/theme/flat/icon/pets.png
Normal file
After Width: | Height: | Size: 827 B |
BIN
journeymap/icon/theme/flat/icon/players.png
Normal file
After Width: | Height: | Size: 362 B |
BIN
journeymap/icon/theme/flat/icon/reset.png
Normal file
After Width: | Height: | Size: 659 B |
BIN
journeymap/icon/theme/flat/icon/savemap.png
Normal file
After Width: | Height: | Size: 926 B |
BIN
journeymap/icon/theme/flat/icon/search.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
journeymap/icon/theme/flat/icon/server.png
Normal file
After Width: | Height: | Size: 3.0 KiB |
BIN
journeymap/icon/theme/flat/icon/theme.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
journeymap/icon/theme/flat/icon/topo.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
journeymap/icon/theme/flat/icon/villagers.png
Normal file
After Width: | Height: | Size: 393 B |
BIN
journeymap/icon/theme/flat/icon/waypoints.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
journeymap/icon/theme/flat/icon/zoomin.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
journeymap/icon/theme/flat/icon/zoomout.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
journeymap/icon/theme/flat/minimap/circle/flat_compass_point.png
Normal file
After Width: | Height: | Size: 589 B |
BIN
journeymap/icon/theme/flat/minimap/circle/flat_mask_256.png
Normal file
After Width: | Height: | Size: 6.9 KiB |
BIN
journeymap/icon/theme/flat/minimap/circle/flat_mask_512.png
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
journeymap/icon/theme/flat/minimap/circle/flat_rim_256.png
Normal file
After Width: | Height: | Size: 6.6 KiB |
BIN
journeymap/icon/theme/flat/minimap/circle/flat_rim_512.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
journeymap/icon/theme/flat/minimap/circle/pur_compass_point.png
Normal file
After Width: | Height: | Size: 959 B |
BIN
journeymap/icon/theme/flat/minimap/circle/pur_mask_256.png
Normal file
After Width: | Height: | Size: 2.0 KiB |
BIN
journeymap/icon/theme/flat/minimap/circle/pur_mask_512.png
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
journeymap/icon/theme/flat/minimap/circle/pur_rim_256.png
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
journeymap/icon/theme/flat/minimap/circle/pur_rim_512.png
Normal file
After Width: | Height: | Size: 37 KiB |
BIN
journeymap/icon/theme/flat/minimap/square/flat_bottom.png
Normal file
After Width: | Height: | Size: 154 B |
BIN
journeymap/icon/theme/flat/minimap/square/flat_bottomleft.png
Normal file
After Width: | Height: | Size: 159 B |
BIN
journeymap/icon/theme/flat/minimap/square/flat_bottomright.png
Normal file
After Width: | Height: | Size: 162 B |
BIN
journeymap/icon/theme/flat/minimap/square/flat_compass_point.png
Normal file
After Width: | Height: | Size: 199 B |
BIN
journeymap/icon/theme/flat/minimap/square/flat_left.png
Normal file
After Width: | Height: | Size: 152 B |
BIN
journeymap/icon/theme/flat/minimap/square/flat_right.png
Normal file
After Width: | Height: | Size: 153 B |
BIN
journeymap/icon/theme/flat/minimap/square/flat_top.png
Normal file
After Width: | Height: | Size: 154 B |
BIN
journeymap/icon/theme/flat/minimap/square/flat_topleft.png
Normal file
After Width: | Height: | Size: 157 B |
BIN
journeymap/icon/theme/flat/minimap/square/flat_topright.png
Normal file
After Width: | Height: | Size: 157 B |
BIN
journeymap/icon/theme/flat/minimap/square/pur_bottom.png
Normal file
After Width: | Height: | Size: 164 B |
BIN
journeymap/icon/theme/flat/minimap/square/pur_bottomleft.png
Normal file
After Width: | Height: | Size: 207 B |
BIN
journeymap/icon/theme/flat/minimap/square/pur_bottomright.png
Normal file
After Width: | Height: | Size: 215 B |
BIN
journeymap/icon/theme/flat/minimap/square/pur_compass_point.png
Normal file
After Width: | Height: | Size: 199 B |
BIN
journeymap/icon/theme/flat/minimap/square/pur_left.png
Normal file
After Width: | Height: | Size: 160 B |
BIN
journeymap/icon/theme/flat/minimap/square/pur_right.png
Normal file
After Width: | Height: | Size: 163 B |
BIN
journeymap/icon/theme/flat/minimap/square/pur_top.png
Normal file
After Width: | Height: | Size: 159 B |
BIN
journeymap/icon/theme/flat/minimap/square/pur_topleft.png
Normal file
After Width: | Height: | Size: 205 B |
BIN
journeymap/icon/theme/flat/minimap/square/pur_topright.png
Normal file
After Width: | Height: | Size: 226 B |
32
journeymap/journeymap.log
Normal file
@ -0,0 +1,30 @@
|
||||
// JourneyMap server configuration file. Modify at your own risk!
|
||||
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||
//
|
||||
// Dimension ResourceKey[minecraft:dimension / academy:safari] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||
{
|
||||
"enabled": "false",
|
||||
"dimension": {
|
||||
"field_25137": {
|
||||
"field_13353": "minecraft",
|
||||
"field_13355": "dimension"
|
||||
},
|
||||
"field_25138": {
|
||||
"field_13353": "academy",
|
||||
"field_13355": "safari"
|
||||
}
|
||||
},
|
||||
"teleportEnabled": "false",
|
||||
"renderRange": "0",
|
||||
"surfaceMapping": "ALL",
|
||||
"topoMapping": "ALL",
|
||||
"biomeMapping": "ALL",
|
||||
"caveMapping": "ALL",
|
||||
"radarEnabled": "ALL",
|
||||
"playerRadarEnabled": "true",
|
||||
"villagerRadarEnabled": "true",
|
||||
"animalRadarEnabled": "true",
|
||||
"mobRadarEnabled": "true",
|
||||
"configVersion": "5.10.3"
|
||||
}
|
20
journeymap/server/5.10/journeymap.server.default.config
Normal file
@ -0,0 +1,20 @@
|
||||
// JourneyMap server configuration file. Modify at your own risk!
|
||||
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||
//
|
||||
// default : jm.server.edit.label.selection.default
|
||||
{
|
||||
"enabled": "false",
|
||||
"teleportEnabled": "false",
|
||||
"renderRange": "0",
|
||||
"surfaceMapping": "ALL",
|
||||
"topoMapping": "ALL",
|
||||
"biomeMapping": "ALL",
|
||||
"caveMapping": "ALL",
|
||||
"radarEnabled": "ALL",
|
||||
"playerRadarEnabled": "true",
|
||||
"villagerRadarEnabled": "true",
|
||||
"animalRadarEnabled": "true",
|
||||
"mobRadarEnabled": "true",
|
||||
"configVersion": "5.10.3"
|
||||
}
|
31
journeymap/server/5.10/journeymap.server.global.config
Normal file
@ -0,0 +1,31 @@
|
||||
// JourneyMap server configuration file. Modify at your own risk!
|
||||
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||
//
|
||||
// Global Server Configuration : Applies to all dimensions unless overridden.
|
||||
{
|
||||
"journeymapEnabled": "true",
|
||||
"useWorldId": "true",
|
||||
"viewOnlyServerProperties": "true",
|
||||
"allowMultiplayerSettings": "ALL",
|
||||
"worldPlayerRadar": "ALL",
|
||||
"worldPlayerRadarUpdateTime": "5",
|
||||
"seeUndergroundPlayers": "ALL",
|
||||
"hideOps": "false",
|
||||
"hideSpectators": "false",
|
||||
"allowDeathPoints": "true",
|
||||
"showInGameBeacons": "true",
|
||||
"allowWaypoints": "true",
|
||||
"teleportEnabled": "false",
|
||||
"renderRange": "0",
|
||||
"surfaceMapping": "ALL",
|
||||
"topoMapping": "ALL",
|
||||
"biomeMapping": "ALL",
|
||||
"caveMapping": "ALL",
|
||||
"radarEnabled": "ALL",
|
||||
"playerRadarEnabled": "true",
|
||||
"villagerRadarEnabled": "true",
|
||||
"animalRadarEnabled": "true",
|
||||
"mobRadarEnabled": "true",
|
||||
"configVersion": "5.10.3"
|
||||
}
|
@ -0,0 +1,30 @@
|
||||
// JourneyMap server configuration file. Modify at your own risk!
|
||||
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||
//
|
||||
// Dimension ResourceKey[minecraft:dimension / minecraft:overworld] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||
{
|
||||
"enabled": "false",
|
||||
"dimension": {
|
||||
"field_25137": {
|
||||
"field_13353": "minecraft",
|
||||
"field_13355": "dimension"
|
||||
},
|
||||
"field_25138": {
|
||||
"field_13353": "minecraft",
|
||||
"field_13355": "overworld"
|
||||
}
|
||||
},
|
||||
"teleportEnabled": "false",
|
||||
"renderRange": "0",
|
||||
"surfaceMapping": "ALL",
|
||||
"topoMapping": "ALL",
|
||||
"biomeMapping": "ALL",
|
||||
"caveMapping": "ALL",
|
||||
"radarEnabled": "ALL",
|
||||
"playerRadarEnabled": "true",
|
||||
"villagerRadarEnabled": "true",
|
||||
"animalRadarEnabled": "true",
|
||||
"mobRadarEnabled": "true",
|
||||
"configVersion": "5.10.3"
|
||||
}
|
@ -0,0 +1,30 @@
|
||||
// JourneyMap server configuration file. Modify at your own risk!
|
||||
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||
//
|
||||
// Dimension ResourceKey[minecraft:dimension / minecraft:the_end] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||
{
|
||||
"enabled": "false",
|
||||
"dimension": {
|
||||
"field_25137": {
|
||||
"field_13353": "minecraft",
|
||||
"field_13355": "dimension"
|
||||
},
|
||||
"field_25138": {
|
||||
"field_13353": "minecraft",
|
||||
"field_13355": "the_end"
|
||||
}
|
||||
},
|
||||
"teleportEnabled": "false",
|
||||
"renderRange": "0",
|
||||
"surfaceMapping": "ALL",
|
||||
"topoMapping": "ALL",
|
||||
"biomeMapping": "ALL",
|
||||
"caveMapping": "ALL",
|
||||
"radarEnabled": "ALL",
|
||||
"playerRadarEnabled": "true",
|
||||
"villagerRadarEnabled": "true",
|
||||
"animalRadarEnabled": "true",
|
||||
"mobRadarEnabled": "true",
|
||||
"configVersion": "5.10.3"
|
||||
}
|
@ -0,0 +1,30 @@
|
||||
// JourneyMap server configuration file. Modify at your own risk!
|
||||
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||
//
|
||||
// Dimension ResourceKey[minecraft:dimension / minecraft:the_nether] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||
{
|
||||
"enabled": "false",
|
||||
"dimension": {
|
||||
"field_25137": {
|
||||
"field_13353": "minecraft",
|
||||
"field_13355": "dimension"
|
||||
},
|
||||
"field_25138": {
|
||||
"field_13353": "minecraft",
|
||||
"field_13355": "the_nether"
|
||||
}
|
||||
},
|
||||
"teleportEnabled": "false",
|
||||
"renderRange": "0",
|
||||
"surfaceMapping": "ALL",
|
||||
"topoMapping": "ALL",
|
||||
"biomeMapping": "ALL",
|
||||
"caveMapping": "ALL",
|
||||
"radarEnabled": "ALL",
|
||||
"playerRadarEnabled": "true",
|
||||
"villagerRadarEnabled": "true",
|
||||
"animalRadarEnabled": "true",
|
||||
"mobRadarEnabled": "true",
|
||||
"configVersion": "5.10.3"
|
||||
}
|
@ -0,0 +1,30 @@
|
||||
// JourneyMap server configuration file. Modify at your own risk!
|
||||
// To restore the default settings, simply delete this file before starting Minecraft server
|
||||
// For more information, go to: http://journeymap.info/JourneyMapServer
|
||||
//
|
||||
// Dimension ResourceKey[minecraft:dimension / solara_dimension:solarademension] Configuration : Overrides the Global Server Configuration for this dimension - sent enable true to override global settings for this dim
|
||||
{
|
||||
"enabled": "false",
|
||||
"dimension": {
|
||||
"field_25137": {
|
||||
"field_13353": "minecraft",
|
||||
"field_13355": "dimension"
|
||||
},
|
||||
"field_25138": {
|
||||
"field_13353": "solara_dimension",
|
||||
"field_13355": "solarademension"
|
||||
}
|
||||
},
|
||||
"teleportEnabled": "false",
|
||||
"renderRange": "0",
|
||||
"surfaceMapping": "ALL",
|
||||
"topoMapping": "ALL",
|
||||
"biomeMapping": "ALL",
|
||||
"caveMapping": "ALL",
|
||||
"radarEnabled": "ALL",
|
||||
"playerRadarEnabled": "true",
|
||||
"villagerRadarEnabled": "true",
|
||||
"animalRadarEnabled": "true",
|
||||
"mobRadarEnabled": "true",
|
||||
"configVersion": "5.10.3"
|
||||
}
|