Alfred Bester hace 3 años
commit
2b729c62e3

BIN
android-chrome-192x192.png


BIN
android-chrome-256x256.png


BIN
apple-touch-icon.png


La diferencia del archivo ha sido suprimido porque es demasiado grande
+ 7 - 0
bootstrap.min.css


+ 9 - 0
browserconfig.xml

@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="utf-8"?>
+<browserconfig>
+    <msapplication>
+        <tile>
+            <square150x150logo src="/mstile-150x150.png"/>
+            <TileColor>#da532c</TileColor>
+        </tile>
+    </msapplication>
+</browserconfig>

BIN
favicon-16x16.png


BIN
favicon-32x32.png


BIN
favicon.ico


+ 150 - 0
index.php

@@ -0,0 +1,150 @@
+<?php
+function secondsToTime($seconds_time)
+{
+//    if ($seconds_time < 24 * 60 * 60) {
+//        return gmdate('H:i:s', $seconds_time);
+//    } else {
+        $hours = floor($seconds_time / 3600);
+        $minutes = floor(($seconds_time - $hours * 3600) / 60);
+        $seconds = floor($seconds_time - ($hours * 3600) - ($minutes * 60));
+        return $hours."h ".$minutes."m ".$seconds."s";
+//    }
+}
+
+?>
+<!doctype html>
+<html lang="en">
+  <head>
+    <meta charset="utf-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
+    <meta name="description" content="">
+    <meta name="author" content="Mark Otto, Jacob Thornton, and Bootstrap contributors">
+    <meta name="generator" content="Jekyll v3.8.5">
+    <title>Lost in Ark Queue</title>
+<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
+<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
+<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
+<link rel="manifest" href="site.webmanifest">
+<link rel="mask-icon" href="safari-pinned-tab.svg" color="#5bbad5">
+<meta name="msapplication-TileColor" content="#da532c">
+<meta name="theme-color" content="#ffffff">
+
+<meta property="og:type" content="website">
+<meta property="og:url" content="https://bester.dahwa.fr/lostark/">
+<meta property="og:title" content="Lost Paper - Estimation du désespoir">
+<meta property="og:description" content="Si tu veux estimer combien de temps tu vas attendre">
+<meta property="og:image" content="https://bester.dahwa.fr/lostark/la.png">
+
+    <!-- Bootstrap core CSS -->
+<link href="bootstrap.min.css" rel="stylesheet" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
+
+
+    <style>
+      .bd-placeholder-img {
+        font-size: 1.125rem;
+        text-anchor: middle;
+        -webkit-user-select: none;
+        -moz-user-select: none;
+        -ms-user-select: none;
+        user-select: none;
+      }
+
+      @media (min-width: 768px) {
+        .bd-placeholder-img-lg {
+          font-size: 3.5rem;
+        }
+      }
+    </style>
+    <!-- Custom styles for this template -->
+    <link href="signin.css" rel="stylesheet">
+  </head>
+<?php
+$init_ts=mktime();
+if(isset($_POST['init_ts'])) $init_ts=$_POST['init_ts'];
+?>
+
+  <body class="text-center">
+  <form class="form-signin" method=post name=init action="">
+  <img class="mb-4" src="la.png" alt="" width="72" height="72">
+  <h1 class="h3 mb-3 font-weight-normal">Estimation du désespoir <small>(<?= date("d/m/Y H:i:s") ?>)</small></h1>
+  <div class="form-group row">
+<?php
+$disable='';
+$readonly='';
+if(isset($_POST['init_val'])) {
+$disable='DISABLED';
+$readonly='READONLY';
+
+}
+
+?>
+  <label for="staticEmail" class="col-sm-4 col-form-label">Position initiale<br><small><?= date("d/m/Y H:i:s",$init_ts)?></small></label>
+  <input type="number" class="col-sm-4 form-control-number" name=init_val required value="<?= $_POST['init_val'] ?>" <?= $readonly ?>>
+    <input type="hidden" name=init_ts value="<?= $init_ts ?>">
+    <button class="col-sm-4 btn btn-lg btn-block" type="submit" name=init value="stage1" <?= $disable ?>> Set</button>
+    </div>
+  </div>
+
+<?php
+if(isset($_POST['init_val'])) 
+if(is_int(intval($_POST['init_val']))) {
+echo '
+  <div class="form-group row">
+    <label for="staticEmail" class="col-sm-4 col-form-label">Position actuelle<br><small>'.date("d/m/Y H:i:s").'</small></label>';
+$v='';
+if(isset($_POST['current_val'])) $v='value="'.$_POST['current_val'].'"';
+echo '    <input type="number" class="col-sm-4 form-control-number" name=current_val required '.$v.'>';
+echo '    <button class="col-sm-4 btn btn-lg btn-block" type="submit" name=init value="stage2">Set</button>
+    <input type="hidden" name=current_ts value="'.mktime().'">
+    </div>
+  </div>';
+
+if(isset($_POST['current_val'])) {
+
+    if($_POST['current_val']>=$_POST['init_val']) {
+echo '
+  <div class="form-group row">
+
+    <label for="staticEmail" class="col-sm-12 col-form-label">Mmmmh. Tu sembles avoir un problème de doigts, ou de vue ;)</label>
+    </div>
+  </div>';
+
+
+    } else {
+        $delta_pos=$_POST['init_val']-$_POST['current_val'];
+        $delta_ts=$_POST['current_ts']-$_POST['init_ts'];
+        $sPos=($delta_ts/$delta_pos);
+        $eta=$sPos*$_POST['current_val'];
+        $ts=mktime()+$eta;
+        $date=date("d/m/Y H:i:s",$ts);
+
+
+echo '
+  <div class="form-group row">
+
+    <label for="staticEmail" class="col-sm-6 col-form-label">Estimation de la fin de la douleur </label>
+    <label for="staticEmail" class="col-sm-6 col-form-label"><b>'.$date.' - soit, dans '.secondsToTime($eta).'</b></label>
+    </div>
+  </div>';
+
+    }
+}
+}
+?>
+
+<?php
+
+
+?>
+</form>
+<?php
+
+/*
+  echo "<pre>";
+print_r($_POST);
+echo "</pre>";
+ */
+?>
+</body>
+</html>
+

BIN
la.png


+ 49 - 0
lostark.sikuli

@@ -0,0 +1,49 @@
+from time import strftime
+import random
+
+running = True
+
+def runHotkey(event):
+    global running
+    running = False
+
+Env.addHotkey(Key.F1, KeyModifier.CTRL, runHotkey)
+
+nw=switchApp('LOST ARK')
+print('Starting')
+#L=Screen(0).getBounds()
+#xmid=int(L.width / 2)
+#ymid=int(L.height / 2)
+Settings.MoveMouseDelay=2
+mouseMove()
+randmousedelay=5
+randmouse=random.randint(0,randmousedelay)
+attmouse = 0
+while nw.isRunning() and running:
+    mouseloc = Env.getMouseLocation()
+    print(strftime('%Y%m%d_%H%M%S ')+'Mouse is '+str(mouseloc))
+    attmouse += 1
+    if attmouse > randmouse:
+        randmouse=random.randint(1,randmousedelay)
+        movemousespeed=float(random.randint(5,20)) / 10
+        Settings.MoveMouseDelay = movemousespeed
+        mouseloc = Env.getMouseLocation()
+        xs = random.randint(0,1)
+        ys = random.randint(0,1)
+        xmod=1
+        ymod=1
+        if xs==0:
+            xmod = -1
+        if ys==0:
+            ymod = -1
+        x=random.randint(50,100)*xmod
+        y=random.randint(25,30)*ymod
+        newmouseloc=mouseloc.offset(x,y)
+        print(strftime('%Y%m%d_%H%M%S ')+'Moving mouse from '+str(mouseloc)+' to '+str(newmouseloc)+' in '+str(movemousespeed)+'s')
+#        mouseMove(newmouseloc)
+        rightClick(newmouseloc)
+        attmouse=0
+        mouseMove()      
+
+
+    wait(1)

BIN
mstile-150x150.png


+ 30 - 0
old.php

@@ -0,0 +1,30 @@
+<?php
+
+
+echo '
+<form method=post action="" name="form">
+  <div class="form-group row">
+    <label for="staticEmail" class="col-sm-2 col-form-label">Initial Position</label>
+    <div class="col-sm-10">
+      <input type="text" name=init_time>
+      <input type="submit" value="setup" name="init">
+    </div>
+  </div>
+</form>';
+
+echo '
+<form method=post action="" name="form2">
+  <div class="form-group row">
+    <label for="inputPassword" class="col-sm-2 col-form-label">Current Position</label>
+    <div class="col-sm-10">
+      <input type="text" class="form-control" id="nputPassword" placeholder="Password">
+      <input type="submit" value="setup" name="current">
+    </div>
+  </div>
+</form>
+';
+
+
+print_r($_POST);
+
+?>

+ 105 - 0
safari-pinned-tab.svg

@@ -0,0 +1,105 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
+ "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
+<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
+ width="290.000000pt" height="290.000000pt" viewBox="0 0 290.000000 290.000000"
+ preserveAspectRatio="xMidYMid meet">
+<metadata>
+Created by potrace 1.14, written by Peter Selinger 2001-2017
+</metadata>
+<g transform="translate(0.000000,290.000000) scale(0.100000,-0.100000)"
+fill="#000000" stroke="none">
+<path d="M0 1450 l0 -1450 1450 0 1450 0 0 1450 0 1450 -1450 0 -1450 0 0
+-1450z m725 926 c138 -20 318 -43 400 -52 168 -19 162 -16 227 -118 33 -50 33
+-51 29 -156 l-3 -106 41 0 42 1 -26 21 c-23 18 -24 22 -10 28 9 3 13 10 10 16
+-9 15 24 25 37 12 9 -9 5 -10 -13 -7 -22 4 -21 2 10 -22 30 -24 32 -28 17 -39
+-16 -11 -16 -13 3 -19 12 -3 21 -11 21 -16 0 -6 4 -8 9 -5 7 5 8 71 2 187 0
+14 -10 35 -21 47 -12 12 -16 22 -11 22 6 0 15 -8 20 -17 6 -11 11 -13 11 -5 0
+7 16 34 36 60 l36 47 -44 13 c-24 7 -61 15 -83 18 -22 4 -42 8 -44 10 -9 9 93
+3 135 -7 37 -10 47 -9 62 4 9 8 46 18 82 22 93 9 568 73 677 90 132 21 135 21
+87 -23 -46 -42 -134 -200 -116 -210 7 -5 5 -14 -5 -27 -15 -20 -15 -20 -8 3
+12 40 -3 23 -29 -34 -14 -31 -23 -60 -20 -65 3 -5 0 -9 -7 -9 -7 0 -10 -3 -6
+-6 3 -3 -3 -22 -13 -42 -11 -21 -24 -50 -31 -67 -16 -40 -25 -8 -10 38 5 17
+13 59 17 92 3 33 9 65 12 70 41 68 -66 162 -193 173 -69 5 -208 -11 -284 -34
+-51 -15 -131 -78 -131 -103 0 -7 3 -10 8 -8 4 3 6 -36 4 -86 -3 -80 0 -100 23
+-159 15 -38 35 -73 45 -78 22 -12 63 -76 58 -91 -2 -6 -19 3 -38 21 -24 23
+-39 29 -49 23 -23 -15 -53 -104 -49 -150 2 -24 1 -43 -2 -43 -3 0 -6 -8 -6
+-17 -1 -20 -21 -278 -30 -388 -6 -73 -9 -112 -18 -255 -3 -47 -8 -114 -10
+-150 -3 -36 -8 -128 -11 -205 -9 -223 -17 -325 -26 -325 -5 0 -6 35 -4 78 3
+42 7 246 10 452 3 206 5 377 6 380 2 9 -2 104 -5 125 -2 11 1 32 5 48 4 15 4
+25 -1 22 -5 -3 -8 4 -7 15 1 11 4 20 7 20 3 0 6 23 7 50 1 28 -2 50 -7 50 -4
+0 -6 9 -3 20 3 11 1 26 -5 33 -7 8 -12 76 -12 175 -2 158 -8 189 -33 162 -9
+-10 -9 -11 2 -5 10 6 12 4 6 -4 -6 -10 -52 -11 -92 -2 -1 1 -9 13 -17 29 -14
+25 -15 11 -16 -163 -1 -104 -4 -199 -7 -210 -8 -28 -7 -720 1 -1030 5 -169 4
+-257 -3 -250 -5 6 -12 80 -15 165 -4 85 -8 187 -11 225 -3 39 -8 129 -11 200
+-3 72 -7 148 -9 170 -2 22 -7 83 -10 136 -3 53 -7 105 -9 115 -2 11 -7 66 -10
+124 -4 58 -9 123 -11 145 -3 22 -7 67 -10 100 -7 82 -37 159 -64 163 -25 4
+-25 5 -7 40 7 15 17 37 20 50 7 21 5 22 -26 17 -18 -3 -48 -10 -67 -15 -48
+-13 -49 -6 -1 15 22 10 40 21 40 25 0 5 7 11 16 14 10 4 13 2 8 -7 -5 -8 -2
+-8 9 2 14 11 18 11 23 -4 14 -34 33 27 34 103 0 55 3 72 14 72 11 0 12 8 6 38
+-22 96 -161 155 -370 156 -124 1 -155 -8 -212 -62 -24 -22 -28 -34 -28 -77 0
+-42 19 -185 34 -257 6 -26 0 -22 -17 10 -8 15 -46 86 -84 157 -38 72 -89 168
+-113 215 -24 47 -52 98 -63 113 l-19 28 33 -5 c19 -3 147 -21 284 -40z m1708
+-61 c-3 -9 -8 -14 -10 -11 -3 3 -2 9 2 15 9 16 15 13 8 -4z m-42 -78 c-10 -9
+-11 -8 -5 6 3 10 9 15 12 12 3 -3 0 -11 -7 -18z m-604 -33 c-3 -3 -12 -4 -19
+-1 -8 3 -5 6 6 6 11 1 17 -2 13 -5z m235 -178 c26 -27 49 -54 51 -60 2 -6 7
+-9 10 -6 3 3 -3 23 -14 44 -10 22 -19 42 -19 45 0 17 58 -79 102 -169 28 -58
+56 -108 62 -112 6 -4 7 -8 3 -8 -5 0 -1 -7 7 -16 9 -8 14 -20 11 -25 -4 -5 1
+-6 10 -3 11 5 18 0 22 -15 3 -11 10 -21 17 -21 6 0 4 -5 -4 -10 -13 -8 -13
+-10 1 -10 12 0 18 -11 22 -37 9 -72 -6 -218 -25 -240 -6 -7 -8 -16 -6 -19 3
+-3 -3 -28 -13 -57 -10 -28 -19 -59 -19 -67 0 -41 -115 -220 -142 -220 -4 0 4
+12 17 26 14 15 22 31 18 37 -3 5 -1 7 4 4 11 -7 37 48 34 70 -1 6 13 26 31 44
+18 18 27 30 21 25 -8 -4 -13 -2 -13 4 0 6 -5 8 -12 4 -9 -5 -9 -2 1 9 15 19
+26 23 15 5 -5 -7 -3 -8 5 -4 7 5 10 14 7 22 -3 8 -2 14 3 14 5 0 11 12 14 27
+5 27 5 27 -10 8 -9 -12 -14 -14 -11 -5 36 110 40 132 30 142 -8 8 -9 5 -5 -12
+4 -15 2 -21 -4 -17 -6 4 -14 0 -17 -9 -4 -10 -2 -13 7 -9 6 4 4 0 -5 -8 -10
+-8 -18 -19 -18 -24 0 -16 -30 -74 -64 -123 -51 -73 -146 -168 -216 -214 -107
+-70 -260 -126 -260 -96 0 6 -8 10 -17 11 -12 0 -8 4 10 11 29 10 34 22 15 34
+-7 5 -8 3 -3 -6 5 -9 4 -11 -3 -6 -23 14 -11 25 73 66 47 22 94 49 105 60 11
+11 23 21 28 23 4 1 6 7 6 14 -1 6 5 9 14 6 10 -4 13 -2 8 5 -4 8 0 12 12 12
+26 0 33 10 22 30 -7 13 -4 16 12 16 16 -1 30 14 54 57 18 32 29 55 24 52 -12
+-7 -12 -3 -4 19 3 9 10 14 14 11 5 -3 7 7 5 22 -1 16 2 31 9 35 8 6 7 8 -2 8
+-7 0 -17 -12 -22 -27 -6 -16 -16 -38 -23 -50 -20 -35 -89 -113 -100 -113 -6 0
+1 12 15 28 26 27 87 131 92 154 2 7 6 29 10 48 15 74 14 88 -6 82 -10 -2 -18
+-9 -18 -16 0 -6 -5 -4 -10 4 -8 13 -10 12 -10 -4 0 -11 -3 -16 -7 -12 -5 4 -6
+8 -3 9 2 1 -3 12 -12 25 -8 13 -14 31 -11 41 2 9 -4 24 -13 32 -10 8 -15 9
+-11 3 3 -6 -1 -11 -9 -11 -8 0 -13 6 -10 13 3 7 2 14 -2 16 -10 4 -72 107 -72
+119 0 6 -4 7 -10 4 -5 -3 -10 0 -10 9 0 8 -3 16 -7 18 -5 2 -22 20 -40 40 -17
+20 -34 34 -37 31 -3 -3 -3 4 -1 16 2 12 0 19 -5 16 -5 -3 -11 -1 -15 5 -3 5 0
+10 7 10 8 0 9 3 3 8 -5 4 -12 14 -13 22 -10 41 -10 50 -2 50 5 0 7 9 5 19 -3
+15 1 19 15 16 13 -3 17 1 13 11 -4 10 0 12 13 7 12 -4 15 -3 9 6 -6 11 -3 11
+16 0 21 -11 22 -10 12 3 -11 13 -8 15 18 16 33 1 106 -39 116 -63 3 -8 9 -15
+14 -15 6 0 5 10 -2 22 -10 18 -9 20 5 15 8 -3 18 -2 21 3 3 4 -1 11 -7 13 -8
+3 -6 6 5 6 10 1 15 6 12 11 -4 6 -10 8 -14 6 -3 -3 -7 4 -7 14 0 23 11 16 78
+-54z m-962 -246 c0 -5 -5 -10 -11 -10 -5 0 -7 5 -4 10 3 6 8 10 11 10 2 0 4
+-4 4 -10z m-57 -58 c-47 -49 -66 -81 -40 -66 6 4 0 -4 -15 -19 -16 -14 -28
+-35 -28 -46 0 -11 -7 -26 -15 -35 -9 -8 -16 -19 -15 -23 0 -4 -10 -37 -22 -73
+-17 -50 -22 -89 -23 -167 0 -57 -1 -103 -2 -103 0 0 -10 16 -22 35 -14 23 -17
+37 -9 41 6 4 8 3 4 -4 -3 -6 -2 -13 4 -17 17 -11 11 24 -8 43 -33 33 -14 168
+39 273 24 49 119 162 119 142 0 -4 7 3 16 15 8 12 19 22 25 22 5 0 1 -8 -8
+-18z m156 -35 c-15 -12 -34 -34 -44 -49 -9 -15 -21 -26 -25 -23 -4 3 -11 -2
+-14 -11 -4 -10 -2 -13 7 -8 9 6 9 4 1 -7 -6 -8 -22 -54 -34 -104 -13 -49 -26
+-94 -30 -98 -4 -5 -4 -25 1 -45 11 -48 11 -105 0 -98 -8 5 -6 -46 3 -71 3 -6
+0 -14 -7 -17 -9 -3 -9 -7 -1 -13 6 -4 10 -16 8 -25 -1 -10 1 -18 6 -18 4 0 6
+-9 3 -20 -3 -13 0 -20 8 -20 11 0 11 -2 -1 -10 -13 -9 -13 -11 0 -20 13 -9 13
+-10 0 -10 -8 0 -29 16 -45 35 -17 20 -37 43 -45 53 -8 10 -16 30 -17 46 -1 16
+-7 34 -12 39 -7 7 -9 3 -6 -11 6 -33 -12 -36 -20 -4 -7 32 -8 168 -2 192 2 8
+7 22 10 30 4 8 8 26 11 40 7 43 64 130 114 175 30 27 140 95 152 95 3 -1 -7
+-11 -21 -23z m-309 -517 c0 -5 -2 -10 -4 -10 -3 0 -8 5 -11 10 -3 6 -1 10 4
+10 6 0 11 -4 11 -10z m-84 -197 c14 -30 52 -96 71 -122 2 -3 9 1 16 9 9 9 9
+11 0 6 -7 -4 -17 2 -22 13 -14 25 -14 28 3 28 8 0 11 -8 8 -19 -2 -10 -1 -18
+4 -16 14 5 154 -143 147 -155 -3 -5 -2 -7 4 -4 11 7 68 -40 68 -56 0 -7 7 -12
+15 -12 8 -1 14 -6 13 -13 -3 -14 31 -50 77 -82 19 -13 37 -27 40 -30 3 -4 14
+-10 24 -13 10 -4 16 -10 13 -13 -20 -20 -217 117 -326 226 -84 84 -134 158
+-166 249 -18 51 -12 53 11 4z m674 -183 c0 -5 7 -7 15 -4 8 4 15 1 15 -6 0 -6
+4 -9 9 -5 6 3 15 -4 21 -15 10 -19 9 -21 -25 -18 -42 3 -85 36 -63 49 17 11
+28 11 28 -1z m270 -50 c0 -5 -12 -10 -26 -10 -14 0 -23 4 -19 10 3 6 15 10 26
+10 10 0 19 -4 19 -10z m-65 -10 c3 -5 1 -10 -4 -10 -6 0 -11 5 -11 10 0 6 2
+10 4 10 3 0 8 -4 11 -10z m383 -110 c-27 -17 -51 -30 -54 -30 -3 0 -20 -6 -37
+-14 -67 -31 -110 -46 -175 -61 -37 -9 -73 -18 -80 -21 -7 -2 -10 1 -7 6 3 6
+14 10 23 10 36 0 210 61 282 99 89 47 114 53 48 11z"/>
+<path d="M460 2376 c0 -4 19 -42 42 -84 23 -43 68 -130 101 -194 32 -65 60
+-118 62 -118 2 0 -4 24 -14 53 -24 68 -191 369 -191 343z"/>
+<path d="M1970 1566 c0 -2 9 -6 20 -9 11 -3 18 -1 14 4 -5 9 -34 13 -34 5z"/>
+</g>
+</svg>

+ 44 - 0
signin.css

@@ -0,0 +1,44 @@
+html,
+body {
+  height: 100%;
+}
+
+body {
+  display: -ms-flexbox;
+  display: flex;
+  -ms-flex-align: center;
+  align-items: center;
+  padding-top: 40px;
+  padding-bottom: 40px;
+  background-color: #f5f5f5;
+}
+
+.form-signin {
+  width: 100%;
+  max-width: 800px;
+  padding: 15px;
+  margin: auto;
+}
+.form-signin .checkbox {
+  font-weight: 400;
+}
+.form-signin .form-control {
+  position: relative;
+  box-sizing: border-box;
+  height: auto;
+  padding: 10px;
+  font-size: 16px;
+}
+.form-signin .form-control:focus {
+  z-index: 2;
+}
+.form-signin input[type="email"] {
+  margin-bottom: -1px;
+  border-bottom-right-radius: 0;
+  border-bottom-left-radius: 0;
+}
+.form-signin input[type="password"] {
+  margin-bottom: 10px;
+  border-top-left-radius: 0;
+  border-top-right-radius: 0;
+}

BIN
sikulixide-2.0.5.jar


+ 19 - 0
site.webmanifest

@@ -0,0 +1,19 @@
+{
+    "name": "",
+    "short_name": "",
+    "icons": [
+        {
+            "src": "/android-chrome-192x192.png",
+            "sizes": "192x192",
+            "type": "image/png"
+        },
+        {
+            "src": "/android-chrome-256x256.png",
+            "sizes": "256x256",
+            "type": "image/png"
+        }
+    ],
+    "theme_color": "#ffffff",
+    "background_color": "#ffffff",
+    "display": "standalone"
+}