diff --git a/src/Admin/Components/Components/Inputs/EditCollection.js b/src/Admin/Components/Components/Inputs/EditCollection.js
index b1fdcedcc4aeb6e726b286b6b01ccb92e67f53e8..3cba5e36158287d28ae7df490c80113764e903a8 100644
--- a/src/Admin/Components/Components/Inputs/EditCollection.js
+++ b/src/Admin/Components/Components/Inputs/EditCollection.js
@@ -243,14 +243,16 @@ const EditCollection = () => {
                                 </MenuItem>
                             ))}
                         />
-                        <CKEditor
-                            editor={ClassicEditor}
-                            data={description}
-                            onBlur={(event, editor) => {
-                                const data = editor.getData();
-                                setDescription(data)
-                            }}
-                        />
+                        <div style={{color: "#666"}}>
+                            <CKEditor
+                                editor={ClassicEditor}
+                                data={description}
+                                onBlur={(event, editor) => {
+                                    const data = editor.getData();
+                                    setDescription(data)
+                                }}
+                            />
+                        </div>
                     </form>
                 </CardContent>
 
diff --git a/src/Admin/Components/Components/Inputs/EditEducationalObect.js b/src/Admin/Components/Components/Inputs/EditEducationalObect.js
index 9054db98f11c4746c1f01f513f77981a4b24f5ca..3c4aead4b934a212d6e589382cb036a29047a0fe 100644
--- a/src/Admin/Components/Components/Inputs/EditEducationalObect.js
+++ b/src/Admin/Components/Components/Inputs/EditEducationalObect.js
@@ -484,7 +484,7 @@ const EditEducationalObject = () => {
                         index={value}
                         onChangeIndex={handleChangeIndex}
                     >
-                        <TabPanel value={value} index={0} dir={theme.direction}>
+
                             <form style={{ display: "flex", flexDirection: "column" }}>
                                 {fields.map((field, index) => (
                                     <FormInput
@@ -559,20 +559,22 @@ const EditEducationalObject = () => {
                                     ))}
                                 />
                             </form>
-                        </TabPanel>
-
-                        <TabPanel value={value} index={1} dir={theme.direction}>
-                            <CKEditor
-                                editor={ClassicEditor}
-                                data={description}
-                                onBlur={(event, editor) => {
-                                    const data = editor.getData();
-                                    setDescription(data)
-                                }}
-                            />
-                        </TabPanel>
-
-                        <TabPanel value={value} index={2} dir={theme.direction}>
+                        
+
+                        
+                            <div style={{color: "#666"}}>
+                                <CKEditor
+                                    editor={ClassicEditor}
+                                    data={description}
+                                    onBlur={(event, editor) => {
+                                        const data = editor.getData();
+                                        setDescription(data)
+                                    }}
+                                />
+                            </div>
+                        
+
+                        
                             <form style={{ display: "flex", flexDirection: "column" }}>
                                 {Imutables.map((field, index) => (
                                     <FormInput
@@ -585,7 +587,7 @@ const EditEducationalObject = () => {
                                     />
                                 ))}
                             </form>
-                        </TabPanel>
+                        
                     </SwipeableViews>
                 </CardContent>
 
diff --git a/src/Admin/Components/Components/Inputs/EditUser.js b/src/Admin/Components/Components/Inputs/EditUser.js
index 90490de2e9ea5a40627610ae91a86d6dee55b137..fd84adb8d9ec9d188da82fd2e8bfbd3b0b2b4300 100644
--- a/src/Admin/Components/Components/Inputs/EditUser.js
+++ b/src/Admin/Components/Components/Inputs/EditUser.js
@@ -28,9 +28,9 @@ import { makeStyles } from '@material-ui/core/styles';
 import SaveIcon from '@material-ui/icons/Save';
 import DeleteRoundedIcon from '@material-ui/icons/DeleteRounded';
 import FormControlLabel from '@material-ui/core/FormControlLabel';
-import Switch from '@material-ui/core/Switch';
 import AddRoundedIcon from '@material-ui/icons/AddRounded';
 import MenuItem from '@material-ui/core/MenuItem';
+
 //imports local files
 import SnackBar from '../../../../Components/SnackbarComponent';
 import LoadingSpinner from '../../../../Components/LoadingSpinner';
@@ -38,6 +38,7 @@ import { StyledCard } from "../../../Components/Styles/DataCard";
 import { Store } from 'Store'
 import FormInput from "Components/FormInput.js"
 import StyledButton from '../Button';
+import { BlueCheckBox, ContrastCheckBox } from "./EmailInputs.js"
 //imports services 
 import { getRequest, putRequest, deleteRequest, postRequest } from '../../../../Components/HelperFunctions/getAxiosConfig'
 import { EditFilter, GetAData } from '../../../Filters';
@@ -567,14 +568,7 @@ const EditUser = () => {
                             ))}
                         />
                         <FormControlLabel
-                            control={
-                                <Switch
-                                    checked={switchState}
-                                    onChange={() => { setSwitchState(!switchState) }}
-                                    name="checkedB"
-                                    color="primary"
-                                />
-                            }
+                            control={state.contrast === "" ? <BlueCheckBox checked={switchState} onChange={() => { setSwitchState(!switchState) }} name="checkedB"/> : <ContrastCheckBox checked={switchState} onChange={() => { setSwitchState(!switchState) }} name="checkedB"/>}
                             label="Concorda com os termos de serviço?"
                         />
                     </form>
diff --git a/src/Admin/Components/Components/Inputs/EmailInputs.js b/src/Admin/Components/Components/Inputs/EmailInputs.js
index 2ce9258005df39d217cda9ea312504f0dd2287f1..0a5df002cfb1f6c2f05b47b8dc93f6e6405bb097 100644
--- a/src/Admin/Components/Components/Inputs/EmailInputs.js
+++ b/src/Admin/Components/Components/Inputs/EmailInputs.js
@@ -24,8 +24,9 @@ import FormControlLabel from "@material-ui/core/FormControlLabel";
 import CircularProgress from "@material-ui/core/CircularProgress";
 import Checkbox from "@material-ui/core/Checkbox";
 import SendRoundedIcon from "@material-ui/icons/SendRounded";
-import { makeStyles } from '@material-ui/core/styles';
+import { makeStyles, withStyles } from '@material-ui/core/styles';
 import Chip from '@material-ui/core/Chip';
+import { yellow, blue } from "@material-ui/core/colors";
 //imports from local files
 import SnackBar from "../../../../Components/SnackbarComponent";
 import { postRequest } from '../../../../Components/HelperFunctions/getAxiosConfig'
@@ -49,6 +50,26 @@ const useStyles = makeStyles((theme) => ({
     },
 }));
 
+export const BlueCheckBox = withStyles({
+    root: {
+        color: blue[400],
+        '&$checked': {
+            color: blue[600],
+        },
+    },
+    checked: {},
+})((props) => <Checkbox color="default" {...props} />);
+
+export const ContrastCheckBox = withStyles({
+    root: {
+        color: yellow[400],
+        '&$checked': {
+            color: yellow[600],
+        },
+    },
+    checked: {},
+})((props) => <Checkbox color="default" {...props} />);
+
 const EmailInputs = (props) => {
 
     const { state } = useContext(Store);
@@ -407,14 +428,7 @@ const EmailInputs = (props) => {
                         {roles.map((role, index) => (
                             <FormControlLabel
                                 key={index}
-                                control={
-                                    <Checkbox
-                                        checked={role.isChecked}
-                                        onChange={() => handleChangeCheckBox(index)}
-                                        name={role.label}
-                                        color="primary"
-                                    />
-                                }
+                                control={props.contrast === "" ? <BlueCheckBox checked={role.isChecked} onChange={() => handleChangeCheckBox(index)} name={role.label}/> : <ContrastCheckBox checked={role.isChecked} onChange={() => handleChangeCheckBox(index)} name={role.label}/>}
                                 label={role.label}
                             />
                         ))}
@@ -471,7 +485,7 @@ const EmailInputs = (props) => {
 
             <div style={{ height: "1em" }} />
 
-            <div style={{ flex: 1 }}>
+            <div style={{ flex: 1, color: "#666" }}>
                 <CKEditor
                     editor={ClassicEditor}
                     data={message}
diff --git a/src/Admin/Pages/Pages/SubPages/Questions.js b/src/Admin/Pages/Pages/SubPages/Questions.js
index 0bb7416bd2d1beb3d38aff0b9ff344d5d69ff4ba..7a9f110fd4000bf238749bc81d5345499a4fa827 100644
--- a/src/Admin/Pages/Pages/SubPages/Questions.js
+++ b/src/Admin/Pages/Pages/SubPages/Questions.js
@@ -29,6 +29,7 @@ import MobilePageHeader from "../../../Components/Components/MobileComponents/Mo
 import PageHeader from "../../../Components/Components/PageHeader"
 import { StyledLoadMoreButton, StyledDivButton, useStylesCell, useStylesRow } from './Collections';
 import { Store } from 'Store'
+import { BlueCheckBox, ContrastCheckBox } from "../../../Components/Components/Inputs/EmailInputs"
 //imports from material ui 
 import TableBody from '@material-ui/core/TableBody';
 import TableCell from '@material-ui/core/TableCell';
@@ -37,7 +38,6 @@ import { Button } from '@material-ui/core';
 import CircularProgress from '@material-ui/core/CircularProgress';
 import AddRoundedIcon from '@material-ui/icons/AddRounded';
 import UpdateRoundedIcon from '@material-ui/icons/UpdateRounded';
-import Switch from '@material-ui/core/Switch';
 //router
 import { useHistory } from 'react-router-dom';
 import HelpRoundedIcon from "@material-ui/icons/HelpRounded";
@@ -279,21 +279,7 @@ const Questions = () => {
                         {
                           title: "Status",
                           subtitle:
-                            row.status === 'active' ?
-                              <Switch
-                                checked={true}
-                                onChange={() => handleChange(index, row.status)}
-                                name="checkedB"
-                                color="primary"
-                              />
-                              :
-
-                              <Switch
-                                checked={false}
-                                onChange={() => handleChange(index, row.status)}
-                                name="checkedB"
-                                color="primary"
-                              />
+                            state.contrast === "" ? <BlueCheckBox checked={row.status === "active"} onChange={() => handleChange(index, row.status)} name="checkedB"/> : <ContrastCheckBox checked={row.status === "active"} onChange={() => handleChange(index, row.status)} name="checkedB"/>
                         },
                         {
                           title: "Atualizado em",
@@ -382,23 +368,9 @@ const Questions = () => {
                     <TableCell className={classesCell.root}  align="right">{DisplayDate(row.created_at)}</TableCell >
                     <TableCell className={classesCell.root}  align="right">{row.description}</TableCell >
                     <TableCell className={classesCell.root}  align="right">
-                      {
-                        row.status === 'active' ?
-                          <Switch
-                            checked={true}
-                            onChange={() => handleChange(index, row.status)}
-                            name="checkedB"
-                            color="primary"
-                          />
-                          :
-
-                          <Switch
-                            checked={false}
-                            onChange={() => handleChange(index, row.status)}
-                            name="checkedB"
-                            color="primary"
-                          />
-                      }
+                        {
+                            state.contrast === "" ? <BlueCheckBox checked={row.status === "active"} onChange={() => handleChange(index, row.status)} name="checkedB"/> : <ContrastCheckBox checked={row.status === "active"} onChange={() => handleChange(index, row.status)} name="checkedB"/>
+                        }
                     </TableCell >
                     <TableCell className={classesCell.root}  align="right">{DisplayDate(row.updated_at)}</TableCell >
                   </TableRow>
diff --git a/src/Admin/Pages/Pages/SubPages/SendEmail.js b/src/Admin/Pages/Pages/SubPages/SendEmail.js
index a5a4a940cd3457e64f6753e68f43c9774f03e02a..92db3b654999d747828f2ab979a2147b3432896f 100644
--- a/src/Admin/Pages/Pages/SubPages/SendEmail.js
+++ b/src/Admin/Pages/Pages/SubPages/SendEmail.js
@@ -56,7 +56,6 @@ const useStyles = makeStyles({
     },
 });
 
-
 const SendEmail = ({ match }) => {
 
     const { state } = useContext(Store);