I don't think anything can be done at this point, you should've been more careful when you messed with Android System itself. If it was SystemUI your phone would reboot into system, but unfortunately that ain't the case. The only reasonable thing to do would be flashing a new ROM.
ADB won't work until your phone reboots to system. I don't think fastboot will help you either, so that leaves only one option, flash it.
Next time you try to change either "framework-res.apk" or "SystemUI.apk" try this script. It will get the job done without any mess. Remember to run the script as root and put the apk files in external sdcard(extsd).
#!/system/bin/sh mount -o rw,remount /system if [ -f "/extsd/framework-res.apk" ] then cat /extsd/framework-res.apk > /system/framework/framework-res.apk chown 0.0 /system/framework/framework-res.apk chmod 0644 /system/framework/framework-res.apk else echo "Error: File(s) not found." fi if [ -f "/extsd/SystemUI.apk" ] then cat /extsd/SystemUI.apk > /system/priv-app/SystemUI.apk chown 0.0 /system/priv-app/SystemUI.apk chmod 0644 /system/priv-app/SystemUI.apk else echo "Error: File(s) not found." fi reboot
adb pushto push the apk in the right place.