From 621423722a8be330a5bfd74eb395203f73bd91d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=86ndrew=20Rininsland?= Date: Wed, 8 May 2019 15:59:45 +0100 Subject: [PATCH 1/5] Adds European parliament party grouping colours --- .gitignore | 1 + index.html | 110 ++++++++++++++++++ index.js | 1 + src/categorical-europe-politics.js | 30 +++++ test/__snapshots__/g-chartcolour.test.js.snap | 24 ++++ 5 files changed, 166 insertions(+) create mode 100644 src/categorical-europe-politics.js diff --git a/.gitignore b/.gitignore index 7595163..4bd7a84 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +.vscode .DS_Store node_modules npm-debug.log diff --git a/index.html b/index.html index c2d653b..42b3683 100644 --- a/index.html +++ b/index.html @@ -1265,5 +1265,115 @@

+

#euPoliticalParties

+ +
+ epp:
#321079 +
 
+
+ +
+ s&d:
#f95f5f +
 
+
+ +
+ alde:
#ffe033 +
 
+
+ +
+ enf:
#58aafc +
 
+
+ +
+ other:
white +
 
+
+ +
+ ecr:
#217a9d +
 
+
+ +
+ ngr:
#991d00 +
 
+
+ +
+ greens:
#8deb9d +
 
+
+ +
+ efdd:
#8bd0d6 +
 
+
+ +
+ ni:
#9e958b +
 
+
+ + + +
+

#euPoliticalPartiesText

+ +
+ epp:
#321079 +
 
+
+ +
+ s&d:
#ff3333 +
 
+
+ +
+ alde:
#9e6e15 +
 
+
+ +
+ enf:
#0070e0 +
 
+
+ +
+ other:
rgba(0, 0, 0, 0.6) +
 
+
+ +
+ ecr:
#217a9d +
 
+
+ +
+ ngr:
#991d00 +
 
+
+ +
+ greens:
#008016 +
 
+
+ +
+ efdd:
#2a9aa7 +
 
+
+ +
+ ni:
rgba(0, 0, 0, 0.8) +
 
+
+ +
+ diff --git a/index.js b/index.js index 6aea4fa..ee998cc 100644 --- a/index.js +++ b/index.js @@ -31,3 +31,4 @@ export {default as ukPoliticalPartiesPrint} from "./src/categorical-uk-politics- export {default as usPoliticalPartiesSmallArea} from "./src/categorical-us-politics-smallarea"; export {default as usPoliticalPartiesLargeArea} from "./src/categorical-us-politics-largearea"; export {default as usPoliticalPartiesMidterms2018} from "./src/categorical-us-politics-midterms-2018.js"; +export {default as euPoliticalParties, text as euPoliticalPartiesText} from "./src/categorical-europe-politics"; \ No newline at end of file diff --git a/src/categorical-europe-politics.js b/src/categorical-europe-politics.js new file mode 100644 index 0000000..1f23ed1 --- /dev/null +++ b/src/categorical-europe-politics.js @@ -0,0 +1,30 @@ +/** + * @file + * Party colours for European Parliament + */ + +export default { + epp: "#321079", + "s&d": "#f95f5f", + alde: "#ffe033", + enf: "#58aafc", + other: "white", + ecr: "#217a9d", + ngr: "#991d00", + greens: "#8deb9d", + efdd: "#8bd0d6", + ni: "#9e958b" +}; + +export const text = { + epp: "#321079", + "s&d": "#ff3333", + alde: "#9e6e15", + enf: "#0070e0", + other: "rgba(0, 0, 0, 0.6)", + ecr: "#217a9d", + ngr: "#991d00", + greens: "#008016", + efdd: "#2a9aa7", + ni: "rgba(0, 0, 0, 0.8)" +}; diff --git a/test/__snapshots__/g-chartcolour.test.js.snap b/test/__snapshots__/g-chartcolour.test.js.snap index 91ec04d..7647b94 100644 --- a/test/__snapshots__/g-chartcolour.test.js.snap +++ b/test/__snapshots__/g-chartcolour.test.js.snap @@ -80,6 +80,30 @@ Object { "#5884d6", "#105ba6", ], + "euPoliticalParties": Object { + "alde": "#ffe033", + "ecr": "#217a9d", + "efdd": "#8bd0d6", + "enf": "#58aafc", + "epp": "#321079", + "greens": "#8deb9d", + "ngr": "#991d00", + "ni": "#9e958b", + "other": "white", + "s&d": "#f95f5f", + }, + "euPoliticalPartiesText": Object { + "alde": "#9e6e15", + "ecr": "#217a9d", + "efdd": "#2a9aa7", + "enf": "#0070e0", + "epp": "#321079", + "greens": "#008016", + "ngr": "#991d00", + "ni": "rgba(0, 0, 0, 0.8)", + "other": "rgba(0, 0, 0, 0.6)", + "s&d": "#ff3333", + }, "extendedLine": Array [ "#d5ccbf", "#ed588d", From bf1d2f00e289edaf4283e602757ed8d2815ad7b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=86ndrew=20Rininsland?= Date: Wed, 8 May 2019 16:26:04 +0100 Subject: [PATCH 2/5] ngl not ngr --- src/categorical-europe-politics.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/categorical-europe-politics.js b/src/categorical-europe-politics.js index 1f23ed1..d01a664 100644 --- a/src/categorical-europe-politics.js +++ b/src/categorical-europe-politics.js @@ -10,7 +10,7 @@ export default { enf: "#58aafc", other: "white", ecr: "#217a9d", - ngr: "#991d00", + ngl: "#991d00", greens: "#8deb9d", efdd: "#8bd0d6", ni: "#9e958b" @@ -23,7 +23,7 @@ export const text = { enf: "#0070e0", other: "rgba(0, 0, 0, 0.6)", ecr: "#217a9d", - ngr: "#991d00", + ngl: "#991d00", greens: "#008016", efdd: "#2a9aa7", ni: "rgba(0, 0, 0, 0.8)" From e80d7f445109b70e48ea2116fb33ce08e3710ff2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=86ndrew=20Rininsland?= Date: Wed, 8 May 2019 16:27:00 +0100 Subject: [PATCH 3/5] Updating snapshots --- build/g-chartcolour.js | 33 +++++++++++++++++++ build/g-chartcolour.min.js | 2 +- index.html | 4 +-- test/__snapshots__/g-chartcolour.test.js.snap | 4 +-- 4 files changed, 38 insertions(+), 5 deletions(-) diff --git a/build/g-chartcolour.js b/build/g-chartcolour.js index 826bf8c..3532d26 100644 --- a/build/g-chartcolour.js +++ b/build/g-chartcolour.js @@ -229,6 +229,37 @@ "social democrat large area": "#177EE6", }; + /** + * @file + * Party colours for European Parliament + */ + + var categoricalEuropePolitics = { + epp: "#321079", + "s&d": "#f95f5f", + alde: "#ffe033", + enf: "#58aafc", + other: "white", + ecr: "#217a9d", + ngl: "#991d00", + greens: "#8deb9d", + efdd: "#8bd0d6", + ni: "#9e958b" + }; + + const text = { + epp: "#321079", + "s&d": "#ff3333", + alde: "#9e6e15", + enf: "#0070e0", + other: "rgba(0, 0, 0, 0.6)", + ecr: "#217a9d", + ngl: "#991d00", + greens: "#008016", + efdd: "#2a9aa7", + ni: "rgba(0, 0, 0, 0.8)" + }; + exports.background = backgrounds; exports.barPrint = barPrint; exports.basicLineWeb = basicLineWeb; @@ -262,6 +293,8 @@ exports.usPoliticalPartiesSmallArea = categoricalUsPoliticsSmallarea; exports.usPoliticalPartiesLargeArea = categoricalUsPoliticsLargearea; exports.usPoliticalPartiesMidterms2018 = categoricalUsPoliticsMidterms2018; + exports.euPoliticalParties = categoricalEuropePolitics; + exports.euPoliticalPartiesText = text; Object.defineProperty(exports, '__esModule', { value: true }); diff --git a/build/g-chartcolour.min.js b/build/g-chartcolour.min.js index 59c84ba..3c06912 100644 --- a/build/g-chartcolour.min.js +++ b/build/g-chartcolour.min.js @@ -1 +1 @@ -!function(e,a){"object"==typeof exports&&"undefined"!=typeof module?a(exports):"function"==typeof define&&define.amd?define(["exports"],a):a(e.gChartcolour=e.gChartcolour||{})}(this,function(e){"use strict";var a={web:"#FFF1e5",social:"#333",video:"#335",print:"#FEE",clean:"#FFF"},c=["#0083b3","#95bfc5","#004d6d","#64a2c1","#c6d6cc"],i=["#EB5E8D","#0f5499"],d=["#c6d6cc","#006a93"],r=["#81838F","#EB3F50"],f=["#0f5499","#EB5E8D","#70DCE6","#9dbf57","#208fce","#7f062e","#c2b7af","#ce3140"],n=["#1E558C","#94d2e6","#1E8FCC","#B3325D","#FF75A3","#D9CCC3","#AECC70","#F34D5B"],l=["#b31147","#d44d41","#e67f64","#f1ae92","#f3dec8","#95c8d4","#5aa8cf","#2f85c3","#1162b3"],t=["#b31147","#cec6b9","#105ba6"],b=["#b31147","#d75d79","#cec6b9","#5884d6","#105ba6"],o=["#b31147","#d75d79","#f09ba8","#f3dec8","#a9b0dd","#5884d6","#105ba6"],s=["#d5ccbf","#ed588d","#FF0000","#00FF00"],u={"CDU/CSU":"#33302E",SPD:"#F34D5B",FDP:"#fcc83c",Left:"#B3325D",AfD:"#1E8FCC",Green:"#AECC70",Other:"#CEC6B9"},C={"CDU/CSU":"#000000",SPD:"#b80000",FDP:"#f5bb00",Left:"#73008a",AfD:"#52c0ff",Green:"#00aa5b",Other:"#CEC6B9"},D={"CDU/CSU":"#000000",SPD:"#b80000",FDP:"#f5bb00",Left:"#73008a",AfD:"#52c0ff",Green:"#00aa5b",Other:"#CEC6B9"},p=["#006a93","#ddb831","#aad1d1","#ad1c21","#55a2c7","#0083b3"],E=["#ff0055","#0066ff","#b1e645","#00ccff","#f2e5da","#65798c"],g=["#0f5499","#EB5E8D","#70DCE6","#9dbf57","#208fce","#7f062e","#c2b7af"],F=["#999999","#006a93","#ddb831","#aad1d1","#ad1c21","#55a2c7","#0083b3"],P=["#cccccc","#eb3f50","#00d9ca","#bf9413","#1f5e99","#a7ff59","#ff9b96","#81838f"],m=["#B3A9A0","#0f5499","#EB5E8D","#70DCE6","#9dbf57","#208fce","#7f062e"],A={area:"#DAD2C3",line:"#B9B3A7"},B=["#f3dec8","#98c3ce","#649ec1","#3c78ae","#0f5499"],_=["#f3dec8","#f1b499","#e88a6e","#d7604c","#bf3536","#990f3d"],v=["#f3dec8","#8ac090","#4c9298","#236386","#0a3866"],S=["#d6d3ea","#adb8e6","#849cdb","#5e82c8","#3968ad","#1b4f8d","#0a3866"],L=["#f3dec8","#96c8c7","#5aa8ae","#2e8790","#0d656f","#00464d"],h={conservative:"#6da8e1",labour:"#e25050","liberal democrats":"#f0a330",ukip:"#ca6dbf",green:"#65a68c",snp:"#f2d92d",dup:"#827996",sf:"#99bf70",pc:"#99d2d0",alliance:"#ffc660",independent:"#CEC6B9",other:"#CEC6B9",sdlp:"#bed676",uup:"#6da8e1"},k={conservative:"#1369bf",labour:"#bf1f1f","liberal democrats":"#c68024",ukip:"#b3009d",green:"#008066",snp:"#99891b",dup:"#443e71",sf:"#6a8d32",pc:"#54a19c",alliance:"#dba436",independent:"#a7a59b",other:"#a7a59b",sdlp:"#9cb157",uup:"#1369bf"},U={conservative:"#6D98D3",labour:"#E35453","liberal democrats":"#EC812A",ukip:"#7265AE",green:"#447A69",snp:"#FCCE26",dup:"#ABA0D0",sf:"#71A04A",pc:"#6ABDB6",alliance:"#ffc660",independent:"#D1D0D0",other:"#CEC6B9",sdlp:"#B2CD47",uup:"#80A9AC"},q={republican:"#e5262d","leaning republican":"#f4a098",swing:"#fcc83c","leaning democrat":"#a2c1e1",democrat:"#238fce",libertarian:"#6e4794",green:"#47aa1d"},x={republican:"#e03d46","leaning republican":"#f4a098",swing:"#fcc83c","leaning democrat":"#a2c1e1",democrat:"#579dd5",libertarian:"#6e4794",green:"#55c72c"},M={"republican small area":"#E60008","republican large area":"#FF4C55",democrat:"#0F5499","social republican":"#FF5760","social democrat small area":"#579DD5","social democrat large area":"#177EE6"};e.background=a,e.barPrint=c,e.basicLineWeb=i,e.basicLinePrint=d,e.basicLineSocial=r,e.categorical_line=f,e.categorical_bar=n,e.diverging=l,e.diverging_3=t,e.diverging_5=b,e.diverging_7=o,e.extendedLine=s,e.germanPoliticalParties_bar=u,e.germanPoliticalParties_bar_social=C,e.germanPoliticalParties_line=D,e.linePrint=p,e.lineSocial=E,e.lineWeb=g,e.mutedFirstLinePrint=F,e.mutedFirstLineSocial=P,e.mutedFirstLineWeb=m,e.noData=A,e.sequentialMulti=B,e.sequentialMulti_2=_,e.sequentialMulti_3=v,e.sequentialSingle=S,e.sequentialSingle_teal=L,e.ukPoliticalParties=h,e.ukPoliticalPartiesText=k,e.ukPoliticalPartiesPrint=U,e.usPoliticalPartiesSmallArea=q,e.usPoliticalPartiesLargeArea=x,e.usPoliticalPartiesMidterms2018=M,Object.defineProperty(e,"__esModule",{value:!0})}); \ No newline at end of file +!function(e,a){"object"==typeof exports&&"undefined"!=typeof module?a(exports):"function"==typeof define&&define.amd?define(["exports"],a):a(e.gChartcolour=e.gChartcolour||{})}(this,function(e){"use strict";var a={web:"#FFF1e5",social:"#333",video:"#335",print:"#FEE",clean:"#FFF"},c=["#0083b3","#95bfc5","#004d6d","#64a2c1","#c6d6cc"],i=["#EB5E8D","#0f5499"],d=["#c6d6cc","#006a93"],r=["#81838F","#EB3F50"],f=["#0f5499","#EB5E8D","#70DCE6","#9dbf57","#208fce","#7f062e","#c2b7af","#ce3140"],n=["#1E558C","#94d2e6","#1E8FCC","#B3325D","#FF75A3","#D9CCC3","#AECC70","#F34D5B"],l=["#b31147","#d44d41","#e67f64","#f1ae92","#f3dec8","#95c8d4","#5aa8cf","#2f85c3","#1162b3"],t=["#b31147","#cec6b9","#105ba6"],b=["#b31147","#d75d79","#cec6b9","#5884d6","#105ba6"],o=["#b31147","#d75d79","#f09ba8","#f3dec8","#a9b0dd","#5884d6","#105ba6"],s=["#d5ccbf","#ed588d","#FF0000","#00FF00"],u={"CDU/CSU":"#33302E",SPD:"#F34D5B",FDP:"#fcc83c",Left:"#B3325D",AfD:"#1E8FCC",Green:"#AECC70",Other:"#CEC6B9"},C={"CDU/CSU":"#000000",SPD:"#b80000",FDP:"#f5bb00",Left:"#73008a",AfD:"#52c0ff",Green:"#00aa5b",Other:"#CEC6B9"},p={"CDU/CSU":"#000000",SPD:"#b80000",FDP:"#f5bb00",Left:"#73008a",AfD:"#52c0ff",Green:"#00aa5b",Other:"#CEC6B9"},g=["#006a93","#ddb831","#aad1d1","#ad1c21","#55a2c7","#0083b3"],D=["#ff0055","#0066ff","#b1e645","#00ccff","#f2e5da","#65798c"],P=["#0f5499","#EB5E8D","#70DCE6","#9dbf57","#208fce","#7f062e","#c2b7af"],E=["#999999","#006a93","#ddb831","#aad1d1","#ad1c21","#55a2c7","#0083b3"],F=["#cccccc","#eb3f50","#00d9ca","#bf9413","#1f5e99","#a7ff59","#ff9b96","#81838f"],m=["#B3A9A0","#0f5499","#EB5E8D","#70DCE6","#9dbf57","#208fce","#7f062e"],A={area:"#DAD2C3",line:"#B9B3A7"},B=["#f3dec8","#98c3ce","#649ec1","#3c78ae","#0f5499"],_=["#f3dec8","#f1b499","#e88a6e","#d7604c","#bf3536","#990f3d"],v=["#f3dec8","#8ac090","#4c9298","#236386","#0a3866"],h=["#d6d3ea","#adb8e6","#849cdb","#5e82c8","#3968ad","#1b4f8d","#0a3866"],S=["#f3dec8","#96c8c7","#5aa8ae","#2e8790","#0d656f","#00464d"],L={conservative:"#6da8e1",labour:"#e25050","liberal democrats":"#f0a330",ukip:"#ca6dbf",green:"#65a68c",snp:"#f2d92d",dup:"#827996",sf:"#99bf70",pc:"#99d2d0",alliance:"#ffc660",independent:"#CEC6B9",other:"#CEC6B9",sdlp:"#bed676",uup:"#6da8e1"},k={conservative:"#1369bf",labour:"#bf1f1f","liberal democrats":"#c68024",ukip:"#b3009d",green:"#008066",snp:"#99891b",dup:"#443e71",sf:"#6a8d32",pc:"#54a19c",alliance:"#dba436",independent:"#a7a59b",other:"#a7a59b",sdlp:"#9cb157",uup:"#1369bf"},x={conservative:"#6D98D3",labour:"#E35453","liberal democrats":"#EC812A",ukip:"#7265AE",green:"#447A69",snp:"#FCCE26",dup:"#ABA0D0",sf:"#71A04A",pc:"#6ABDB6",alliance:"#ffc660",independent:"#D1D0D0",other:"#CEC6B9",sdlp:"#B2CD47",uup:"#80A9AC"},U={republican:"#e5262d","leaning republican":"#f4a098",swing:"#fcc83c","leaning democrat":"#a2c1e1",democrat:"#238fce",libertarian:"#6e4794",green:"#47aa1d"},q={republican:"#e03d46","leaning republican":"#f4a098",swing:"#fcc83c","leaning democrat":"#a2c1e1",democrat:"#579dd5",libertarian:"#6e4794",green:"#55c72c"},M={"republican small area":"#E60008","republican large area":"#FF4C55",democrat:"#0F5499","social republican":"#FF5760","social democrat small area":"#579DD5","social democrat large area":"#177EE6"},w={epp:"#321079","s&d":"#f95f5f",alde:"#ffe033",enf:"#58aafc",other:"white",ecr:"#217a9d",ngl:"#991d00",greens:"#8deb9d",efdd:"#8bd0d6",ni:"#9e958b"};const y={epp:"#321079","s&d":"#ff3333",alde:"#9e6e15",enf:"#0070e0",other:"rgba(0, 0, 0, 0.6)",ecr:"#217a9d",ngl:"#991d00",greens:"#008016",efdd:"#2a9aa7",ni:"rgba(0, 0, 0, 0.8)"};e.background=a,e.barPrint=c,e.basicLineWeb=i,e.basicLinePrint=d,e.basicLineSocial=r,e.categorical_line=f,e.categorical_bar=n,e.diverging=l,e.diverging_3=t,e.diverging_5=b,e.diverging_7=o,e.extendedLine=s,e.germanPoliticalParties_bar=u,e.germanPoliticalParties_bar_social=C,e.germanPoliticalParties_line=p,e.linePrint=g,e.lineSocial=D,e.lineWeb=P,e.mutedFirstLinePrint=E,e.mutedFirstLineSocial=F,e.mutedFirstLineWeb=m,e.noData=A,e.sequentialMulti=B,e.sequentialMulti_2=_,e.sequentialMulti_3=v,e.sequentialSingle=h,e.sequentialSingle_teal=S,e.ukPoliticalParties=L,e.ukPoliticalPartiesText=k,e.ukPoliticalPartiesPrint=x,e.usPoliticalPartiesSmallArea=U,e.usPoliticalPartiesLargeArea=q,e.usPoliticalPartiesMidterms2018=M,e.euPoliticalParties=w,e.euPoliticalPartiesText=y,Object.defineProperty(e,"__esModule",{value:!0})}); \ No newline at end of file diff --git a/index.html b/index.html index 42b3683..ee05679 100644 --- a/index.html +++ b/index.html @@ -1299,7 +1299,7 @@

#euPoliticalPartie
- ngr:
#991d00 + ngl:
#991d00
 
@@ -1354,7 +1354,7 @@

#euPolitic
- ngr:
#991d00 + ngl:
#991d00
 
diff --git a/test/__snapshots__/g-chartcolour.test.js.snap b/test/__snapshots__/g-chartcolour.test.js.snap index 7647b94..b580c7c 100644 --- a/test/__snapshots__/g-chartcolour.test.js.snap +++ b/test/__snapshots__/g-chartcolour.test.js.snap @@ -87,7 +87,7 @@ Object { "enf": "#58aafc", "epp": "#321079", "greens": "#8deb9d", - "ngr": "#991d00", + "ngl": "#991d00", "ni": "#9e958b", "other": "white", "s&d": "#f95f5f", @@ -99,7 +99,7 @@ Object { "enf": "#0070e0", "epp": "#321079", "greens": "#008016", - "ngr": "#991d00", + "ngl": "#991d00", "ni": "rgba(0, 0, 0, 0.8)", "other": "rgba(0, 0, 0, 0.6)", "s&d": "#ff3333", From 4a39f4538f8df952fd1cf5cb8ce10c91fab4961e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=86ndrew=20Rininsland?= Date: Fri, 10 May 2019 15:52:41 +0100 Subject: [PATCH 4/5] Updating --- src/categorical-europe-politics.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/categorical-europe-politics.js b/src/categorical-europe-politics.js index d01a664..bda4a21 100644 --- a/src/categorical-europe-politics.js +++ b/src/categorical-europe-politics.js @@ -5,26 +5,26 @@ export default { epp: "#321079", - "s&d": "#f95f5f", + sd: "#f95f5f", alde: "#ffe033", enf: "#58aafc", - other: "white", + others: "white", ecr: "#217a9d", - ngl: "#991d00", - greens: "#8deb9d", + guengl: "#991d00", + greensefa: "#8deb9d", efdd: "#8bd0d6", ni: "#9e958b" }; export const text = { epp: "#321079", - "s&d": "#ff3333", + sd: "#ff3333", alde: "#9e6e15", enf: "#0070e0", - other: "rgba(0, 0, 0, 0.6)", + others: "rgba(0, 0, 0, 0.6)", ecr: "#217a9d", - ngl: "#991d00", - greens: "#008016", + guengl: "#991d00", + greensefa: "#008016", efdd: "#2a9aa7", ni: "rgba(0, 0, 0, 0.8)" }; From c9d9652353f90251a9e4a1978cf100e9d9a71a51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=86ndrew=20Rininsland?= Date: Fri, 10 May 2019 16:19:54 +0100 Subject: [PATCH 5/5] Updating snap --- test/__snapshots__/g-chartcolour.test.js.snap | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/test/__snapshots__/g-chartcolour.test.js.snap b/test/__snapshots__/g-chartcolour.test.js.snap index b580c7c..4b9a561 100644 --- a/test/__snapshots__/g-chartcolour.test.js.snap +++ b/test/__snapshots__/g-chartcolour.test.js.snap @@ -86,11 +86,11 @@ Object { "efdd": "#8bd0d6", "enf": "#58aafc", "epp": "#321079", - "greens": "#8deb9d", - "ngl": "#991d00", + "greensefa": "#8deb9d", + "guengl": "#991d00", "ni": "#9e958b", - "other": "white", - "s&d": "#f95f5f", + "others": "white", + "sd": "#f95f5f", }, "euPoliticalPartiesText": Object { "alde": "#9e6e15", @@ -98,11 +98,11 @@ Object { "efdd": "#2a9aa7", "enf": "#0070e0", "epp": "#321079", - "greens": "#008016", - "ngl": "#991d00", + "greensefa": "#008016", + "guengl": "#991d00", "ni": "rgba(0, 0, 0, 0.8)", - "other": "rgba(0, 0, 0, 0.6)", - "s&d": "#ff3333", + "others": "rgba(0, 0, 0, 0.6)", + "sd": "#ff3333", }, "extendedLine": Array [ "#d5ccbf",