diff --git a/client/images/triangle-arrow-down-white.svg b/client/images/triangle-arrow-down-white.svg
new file mode 100644
index 00000000..a66e9ff6
--- /dev/null
+++ b/client/images/triangle-arrow-down-white.svg
@@ -0,0 +1,12 @@
+
\ No newline at end of file
diff --git a/client/images/triangle-arrow-right-white.svg b/client/images/triangle-arrow-right-white.svg
new file mode 100644
index 00000000..ff4a6b67
--- /dev/null
+++ b/client/images/triangle-arrow-right-white.svg
@@ -0,0 +1,12 @@
+
\ No newline at end of file
diff --git a/client/modules/IDE/components/FileNode.jsx b/client/modules/IDE/components/FileNode.jsx
index a749eb9c..0131651d 100644
--- a/client/modules/IDE/components/FileNode.jsx
+++ b/client/modules/IDE/components/FileNode.jsx
@@ -7,7 +7,7 @@ import classNames from 'classnames';
import * as IDEActions from '../actions/ide';
import * as FileActions from '../actions/files';
-const downArrowUrl = require('../../../images/down-arrow.svg');
+const downArrowUrl = require('../../../images/down-filled-triangle.svg');
const folderRightUrl = require('../../../images/triangle-arrow-right.svg');
const folderDownUrl = require('../../../images/triangle-arrow-down.svg');
const fileUrl = require('../../../images/file.svg');
diff --git a/client/modules/IDE/components/Sidebar.jsx b/client/modules/IDE/components/Sidebar.jsx
index c7f825dc..00145a0e 100644
--- a/client/modules/IDE/components/Sidebar.jsx
+++ b/client/modules/IDE/components/Sidebar.jsx
@@ -4,8 +4,7 @@ import classNames from 'classnames';
import InlineSVG from 'react-inlinesvg';
import ConnectedFileNode from './FileNode';
-const folderUrl = require('../../../images/folder.svg');
-const downArrowUrl = require('../../../images/down-arrow.svg');
+const downArrowUrl = require('../../../images/down-filled-triangle.svg');
class Sidebar extends React.Component {
constructor(props) {
@@ -72,10 +71,7 @@ class Sidebar extends React.Component {