Skip to content

Instantly share code, notes, and snippets.

@mattearnshaw
Created August 31, 2017 15:24
Show Gist options
  • Save mattearnshaw/c3bd22f70d08ee3d88a78102b8e58334 to your computer and use it in GitHub Desktop.
Save mattearnshaw/c3bd22f70d08ee3d88a78102b8e58334 to your computer and use it in GitHub Desktop.
// white
$('body').css('background', 'white');
$('.nav-tabs > li > a').css('background', 'rgba(211,211,211,0.5)');
$('.activeExperiment').css('background-color', 'rgba(84, 32, 0, 0.2)');
$('.nthTr').css('background', 'rgba(71, 58, 51, 0.8)');
$('.dropDownButtonContainer').css('background', 'rgba(211,211,211,0.5)');
$('#experiments, #console').css('background', 'rgba(211,211,211,0.8)');
$('.btn').css('background', 'rgb(211,211,211)');
$('.ui-dialog').css('background', 'white');
// default
$('body').css('background', 'rgba(0, 0, 0, 0) linear-gradient(rgb(20, 26, 30) 0%, rgb(92, 98, 104) 50%, rgb(96, 102, 109) 73%, rgb(81, 83, 89) 100%) repeat scroll 0% 0% / auto padding-box border-box');
$('.nav-tabs > li > a').css('background', 'rgba(66, 59, 59, 0.5)');
$('.activeExperiment').css('background-color', 'rgba(84, 32, 0, 0.8)');
$('.nthTr').css('background', 'rgba(71, 58, 51, 0.2');
$('.dropDownButtonContainer').css('background', 'rgba(66, 59, 59, 0.9)');
$('#experiments, #console').css('background', 'rgba(66, 59, 59, 0.8)');
$('.btn').css('background', 'rgba(66, 59, 59, 0.8) none repeat scroll 0% 0% / auto padding-box border-box');
$('.ui-dialog').css('background', 'rgba(66, 59, 59, 0.90)');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment