# Space Deck fill color This document shows how to edit the default fill color of spacedeck. > For this to take effect you need to delete the `database.sqlite` file > This applies if your project was already setup Open the project folder and edit the `/models/db.js` file. Go to the following line ```javascript= fill_color: {type: Sequelize.STRING, default: "transparent"}, ``` replace transparent with the desired default color **Example** ```javascript= fill_color: {type: Sequelize.STRING, default: "#F1C40F"}, ``` Afterwards you can run the project and migrate the data again 🚀