Dark mode tweaks

Summary: Went over all plugins and did superficial fixes to make most plugins look decent or at least usable in dark mode, which before they weren't :)

Reviewed By: priteshrnandgaonkar

Differential Revision: D29456680

fbshipit-source-id: 3952e5da512c68b89434eea081faf121d1049908
This commit is contained in:
Michel Weststrate
2021-06-29 08:38:33 -07:00
committed by Facebook GitHub Bot
parent 014e571f74
commit 8cbdd3d148
14 changed files with 70 additions and 225 deletions

View File

@@ -19,6 +19,7 @@ import {
} from 'flipper';
import {parseURIParameters, stripQueryParameters} from '../util/uri';
import React from 'react';
import {theme} from 'flipper-plugin';
const BOX_HEIGHT = 240;
@@ -81,7 +82,7 @@ const NavigationInfoBoxContainer = styled.div({
flexGrow: 1,
position: 'relative',
marginBottom: 10,
backgroundColor: colors.white,
backgroundColor: theme.backgroundDefault,
boxShadow: '1px 1px 5px rgba(0,0,0,0.1)',
});
@@ -117,7 +118,7 @@ const TimelineCircle = styled.div({
height: 18,
top: 11,
left: -33,
backgroundColor: colors.light02,
backgroundColor: theme.backgroundWash,
border: `4px solid ${colors.highlight}`,
borderRadius: '50%',
position: 'absolute',
@@ -129,7 +130,7 @@ const TimelineMiniCircle = styled.div({
top: 1,
left: -30,
borderRadius: '50%',
backgroundColor: colors.highlight,
backgroundColor: theme.textColorActive,
position: 'absolute',
});