Hello there!
To change your text align in WordPress theme or any other web page, you need to have fundamentals CSS and HTML knowledge to achieve that for any HTML tag you what.
It depends on the direction and alignment you want, whether it’s right or left. However, changing text align for all your elements to only one alignment direction is not a very good idea.
This code for example will align everything on your website to the right.
* {
text-align: right;
}
If you are looking to change to a RTL language, then you can do it from Settings >> General usder Site language submenu.
Please let me know what are you looking to do exactly with your theme.